File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed
Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change 1- name : .NET
1+ name : CI
22
33on :
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+
914jobs :
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
You can’t perform that action at this time.
0 commit comments