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 bf5f84b commit d02c14aCopy full SHA for d02c14a
1 file changed
.github/workflows/dotnet.yml
@@ -46,13 +46,13 @@ jobs:
46
run: dotnet build --no-restore --configuration Release
47
48
- name: Run Test
49
- run: dotnet test --no-build --configuration Release --treenode-filter "/*/*/*/*[Category!=LocalOnly]" -- --coverage
+ run: dotnet test --no-build --configuration Release --treenode-filter "/*/*/*/*[Category!=LocalOnly]" -- --coverage --coverage-output-format cobertura
50
51
- name: Collect Coverage
52
if: success()
53
id: coverage
54
run: |
55
- FILES=$(find ${{github.workspace}} -name '*.coverage' -print | tr '\n' ' ')
+ FILES=$(find ${{github.workspace}} -name '*.cobertura.xml' -print | tr '\n' ' ')
56
echo "files=$FILES" >> $GITHUB_OUTPUT
57
58
- name: Report Coverage
0 commit comments