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 c16cfc4 commit d185151Copy full SHA for d185151
1 file changed
.github/workflows/test-report.yml
@@ -2,7 +2,8 @@ name: Test Report
2
3
on:
4
workflow_run:
5
- workflows: ['Continuous Integration & Delivery']
+ workflows:
6
+ - Continuous Integration & Delivery
7
types:
8
- completed
9
@@ -16,9 +17,12 @@ jobs:
16
17
runs-on: ubuntu-24.04
18
19
steps:
20
+ # https://github.com/dorny/test-reporter/issues/234#issuecomment-1462911162.
21
- name: Download Test And Coverage Results
- uses: actions/download-artifact@v5
22
+ uses: actions/download-artifact@v4
23
with:
24
+ github-token: ${{ secrets.GITHUB_TOKEN }}
25
+ run-id: ${{ github.event.workflow_run.id }}
26
pattern: Testcontainers*
27
28
- name: Publish Test Report
@@ -27,3 +31,6 @@ jobs:
31
name: test-report
32
path: '*.trx'
29
33
reporter: dotnet-trx
34
+ only-summary: true
35
+ list-suites: failed
36
+ list-tests: failed
0 commit comments