We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 834c0e3 commit decef18Copy full SHA for decef18
.github/workflows/dotnet.yml
@@ -119,6 +119,12 @@ jobs:
119
- name: Test
120
run: |
121
dotnet test --no-build --configuration Release --collect:"XPlat Code Coverage" --logger "GitHubActions;summary.includeSkippedTests=true" -- RunConfiguration.CollectSourceInformation=true DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.DeterministicReport=true
122
+ - name: Upload coverage to artifacts
123
+ if: matrix.os == 'ubuntu-latest'
124
+ uses: actions/upload-artifact@v3
125
+ with:
126
+ name: coverage
127
+ path: '**/coverage.cobertura.xml'
128
- name: Upload coverage to codecov.io
129
# TODO: Why does codecov report 3.83% decreased coverage?
130
if: matrix.os == 'ubuntu-latest'
0 commit comments