Skip to content

Commit 0c8957f

Browse files
authored
Adds reports workflow for 4.x test workflows
Near identical to 3.x version (except names).
1 parent 57e7893 commit 0c8957f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/[email protected]

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This is a workflow that runs after 'Tests'
2+
# workflow, because the 'Tests' (PR) workflow
3+
# has insufficient permissions to write
4+
# GitHub Actions checks.
5+
name: 'Tests Reports (Driver 4.x)'
6+
on:
7+
workflow_run:
8+
workflows: ['Tests (Driver 4.x)']
9+
types:
10+
- completed
11+
jobs:
12+
report:
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 5
15+
16+
steps:
17+
- name: Generate test report
18+
uses: dorny/test-reporter@v1
19+
with:
20+
artifact: 'test-results'
21+
name: 'Test report'
22+
path: '**/TEST-TestSuite.xml'
23+
reporter: java-junit
24+
list-tests: failed

0 commit comments

Comments
 (0)