File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 36
36
steps :
37
37
- name : Checkout Repository
38
38
uses : actions/checkout@v5
39
+ with :
40
+ lfs : true
39
41
40
42
- id : set-test-projects
41
43
name : Collect Test Projects
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: Test Report
2
2
3
3
on :
4
4
workflow_run :
5
- workflows : ['Continuous Integration & Delivery']
5
+ workflows :
6
+ - Continuous Integration & Delivery
6
7
types :
7
8
- completed
8
9
@@ -16,14 +17,26 @@ jobs:
16
17
runs-on : ubuntu-24.04
17
18
18
19
steps :
20
+ # https://github.com/dorny/test-reporter/issues/131#issuecomment-2093880211.
21
+ # https://github.com/dorny/test-reporter/issues/234#issuecomment-1462911162.
22
+ - name : Checkout Repository
23
+ uses : actions/checkout@v5
24
+ with :
25
+ lfs : true
26
+
19
27
- name : Download Test And Coverage Results
20
28
uses : actions/download-artifact@v5
21
29
with :
30
+ github-token : ${{ secrets.GITHUB_TOKEN }}
31
+ run-id : ${{ github.event.workflow_run.id }}
22
32
pattern : Testcontainers*
23
33
24
34
- name : Publish Test Report
25
35
26
36
with :
27
37
name : test-report
28
- path : ' *.trx'
38
+ path : ' **/* .trx'
29
39
reporter : dotnet-trx
40
+ only-summary : true
41
+ list-suites : failed
42
+ list-tests : failed
You can’t perform that action at this time.
0 commit comments