File tree Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Original file line number Diff line number Diff line change 77 branches :
88 - main
99jobs :
10- build-debug :
11- strategy :
12- matrix :
13- os : [ubuntu-latest, windows-latest, macos-latest]
14- runs-on : ${{ matrix.os }}
15- steps :
16- - uses : actions/checkout@v3
17- with :
18- fetch-depth : 0
19- - name : Setup .NET 6
20- uses : actions/setup-dotnet@v3
21- with :
22- dotnet-version : 6.0.x
23- - run : dotnet test --configuration Debug --filter 'TestCategory=Completed' /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura
2410 build :
2511 strategy :
2612 matrix :
2713 os : [ubuntu-latest, windows-latest, macos-latest]
14+ config : [Debug, Release]
2815 runs-on : ${{ matrix.os }}
2916 steps :
3017 - uses : actions/checkout@v3
3421 uses : actions/setup-dotnet@v3
3522 with :
3623 dotnet-version : 6.0.x
37- - run : dotnet test --configuration Release --filter 'TestCategory=Completed' /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura
38- - run : dotnet pack src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj
24+ - run : dotnet test --configuration ${{ matrix.config }} --filter 'TestCategory=Completed' /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura
You can’t perform that action at this time.
0 commit comments