We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ab8d3 commit c8e3ccaCopy full SHA for c8e3cca
.github/workflows/github-actions-tests-on-windows.yml
@@ -20,4 +20,17 @@ jobs:
20
- name: Build
21
run: dotnet build --configuration Debug --no-restore
22
- name: Test
23
- run: dotnet test --no-build --no-restore --verbosity normal --filter Category=CI
+ id: test
24
+ continue-on-error: true
25
+ run: dotnet test --no-build --no-restore --verbosity normal --filter Category=CI --logger "trx;LogFileName=test-results.trx"
26
+ - name: Publish Test Results
27
+ uses: EnricoMi/publish-unit-test-result-action/windows@v2
28
+ if: always()
29
+ with:
30
+ files: '**/test-results.trx'
31
+ check_name: 'Test Results'
32
+ - name: Check Test Results
33
+ if: steps.test.outcome == 'failure'
34
+ run: |
35
+ echo "::warning::Tests failed"
36
+ exit 1
0 commit comments