1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Fix post-build test reporting and report summary

This commit is contained in:
Mark McDowall
2024-01-12 19:20:00 -08:00
committed by Mark McDowall
parent d322619733
commit 91f33c670e
2 changed files with 22 additions and 14 deletions
+14 -4
View File
@@ -13,19 +13,29 @@ permissions:
jobs:
report:
if: github.event.workflow_run.conclusion != 'skipped'
if: ${{ github.event.workflow_run.conclusion != 'skipped' && github.event.workflow_run.conclusion != 'cancelled' }}
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Download Test Reports
uses: actions/download-artifact@v4
with:
name: results-*
path: test-results
pattern: results-*
merge-multiple: true
repository: ${{ github.event.repository.owner.login }}/${{ github.event.repository.name }}
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Test Results
uses: phoenix-actions/test-reporting@v12
with:
name: 'Test Results'
path: 'test-results/*.trx'
list-suites: failed
list-tests: failed
name: Test Results
only-summary: true
path: '*.trx'
reporter: dotnet-trx
working-directory: test-results