We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79d6388 commit c30bcc2Copy full SHA for c30bcc2
.github/workflows/build-dotnet.yml
@@ -27,9 +27,10 @@ jobs:
27
with:
28
dotnet-version: '6.0.x'
29
- name: Build and Test coverage
30
- run: ./BuildAndTest.ps1
+ run: |
31
+ dotnet build -f net6.0
32
+ dotnet test --% --logger "junit;LogFilePath=TestResults/test_output.xml" /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=\"cobertura,json\" /p:ExcludeByFile=\"**/obj/**/*.cs\"
33
working-directory: ./dotnet
- shell: pwsh
34
- name: Upload Unit Test Results - .NET
35
if: always()
36
uses: actions/upload-artifact@v2
0 commit comments