File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -6,28 +6,26 @@ name: ci-report
66
77on :
88 workflow_run :
9- workflows : ci-test # runs after CI workflow
9+ workflows : [' ci-test'] # runs after CI workflow
1010 types :
1111 - completed
1212jobs :
1313 test-report-release :
1414 runs-on : windows-latest
15- name : Test report (release)
1615 steps :
1716 - uses : dorny/test-reporter@v1
1817 with :
1918 artifact : test-results-release # artifact name
20- name : Dorny release tests # Name of the check run which will be created
19+ name : Report release tests # Name of the check run which will be created
2120 path : ' *.trx' # Path to test results (inside artifact .zip)
2221 reporter : dotnet-trx # Format of test results
2322
2423 test-report-debug :
2524 runs-on : windows-latest
26- name : Test report (debug)
2725 steps :
2826 - uses : dorny/test-reporter@v1
2927 with :
3028 artifact : test-results-debug # artifact name
31- name : Dorny debug tests # Name of the check run which will be created
29+ name : Report debug tests # Name of the check run which will be created
3230 path : ' *.trx' # Path to test results (inside artifact .zip)
3331 reporter : dotnet-trx # Format of test results
You can’t perform that action at this time.
0 commit comments