Skip to content

Commit d02c14a

Browse files
committed
Update dotnet.yml
1 parent bf5f84b commit d02c14a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
run: dotnet build --no-restore --configuration Release
4747

4848
- name: Run Test
49-
run: dotnet test --no-build --configuration Release --treenode-filter "/*/*/*/*[Category!=LocalOnly]" -- --coverage
49+
run: dotnet test --no-build --configuration Release --treenode-filter "/*/*/*/*[Category!=LocalOnly]" -- --coverage --coverage-output-format cobertura
5050

5151
- name: Collect Coverage
5252
if: success()
5353
id: coverage
5454
run: |
55-
FILES=$(find ${{github.workspace}} -name '*.coverage' -print | tr '\n' ' ')
55+
FILES=$(find ${{github.workspace}} -name '*.cobertura.xml' -print | tr '\n' ' ')
5656
echo "files=$FILES" >> $GITHUB_OUTPUT
5757
5858
- name: Report Coverage

0 commit comments

Comments
 (0)