Skip to content

Commit b66823c

Browse files
authored
chore : updated CI
1 parent a5b5681 commit b66823c

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,33 @@
1-
name: .NET
1+
name: CI
22

33
on:
44
push:
55
branches: [ main ]
6+
paths-ignore:
7+
- 'README.md'
68
pull_request:
79
branches: [ main ]
8-
10+
paths-ignore:
11+
- 'README.md'
12+
workflow_dispatch:
13+
914
jobs:
1015
build:
1116

1217
runs-on: ubuntu-latest
1318

1419
steps:
1520
- uses: actions/checkout@v2
21+
1622
- name: Setup .NET
1723
uses: actions/setup-dotnet@v1
1824
with:
1925
dotnet-version: 6.0.x
20-
- name: Restore dependencies
21-
run: dotnet restore
26+
2227
- name: Build
23-
run: dotnet build --no-restore
24-
- name: Test
25-
run: dotnet test --no-build --verbosity normal
28+
run: dotnet build --configuration Release
29+
working-directory: ./src
30+
31+
- name: Run unit tests
32+
run: dotnet test --configuration Release
33+
working-directory: ./tests/FileSizeFromBase64.NET.Tests

0 commit comments

Comments
 (0)