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.
2 parents be51738 + 862e197 commit 9ded1edCopy full SHA for 9ded1ed
1 file changed
.github/workflows/dotnet.yml
@@ -100,7 +100,8 @@ jobs:
100
uses: actions/upload-artifact@v4
101
with:
102
name: coverage-${{ matrix.name }}
103
- path: ./coverage/**/coverage.cobertura.xml
+ path: ./coverage/**/*.cobertura.xml
104
+ if-no-files-found: error
105
Report-Coverage:
106
name: "Report Coverage"
107
runs-on: ubuntu-latest
@@ -119,7 +120,7 @@ jobs:
119
120
- name: Generate Report
121
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.9
122
- reports: './coverage/**/**/coverage.cobertura.xml'
123
+ reports: './coverage/**/*.cobertura.xml'
124
targetdir: './coveragereport'
125
reporttypes: 'Cobertura'
126
verbosity: 'Info'
0 commit comments