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 ac8603c commit 9175219Copy full SHA for 9175219
1 file changed
.github/workflows/ci.yml
@@ -137,7 +137,18 @@ jobs:
137
9.0.x
138
139
- name: 🧪 Run unit tests
140
- run: dotnet test -c release -p:VSTestUseMSBuildOutput=false --logger "console;verbosity=normal"
+ run: dotnet test -c release -p:VSTestUseMSBuildOutput=false --verbosity normal --logger trx --results-directory TestResults --collect "XPlat Code Coverage"
141
+
142
+ - name: Test Reports
143
+ uses: bibipkins/dotnet-test-reporter@v1.4.1
144
+ if: always()
145
+ with:
146
+ github-token: ${{ secrets.GITHUB_TOKEN }}
147
+ comment-title: "Unit Test Results"
148
+ results-path: ./TestResults/*.trx
149
+ coverage-path: ./TestResults/**/coverage.cobertura.xml
150
+ coverage-type: cobertura
151
+ coverage-threshold: 0.00
152
153
- name: 📛 Upload hang- and crash-dumps on test failure
154
if: failure()
0 commit comments