We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfb8f3 commit 94e8482Copy full SHA for 94e8482
.github/workflows/test-and-build-report.yml
@@ -1,7 +1,8 @@
1
-name: Test and Build Report
+name: Test Report
2
on:
3
workflow_run:
4
- workflows: ['CI'] # runs after CI workflow
+ workflows:
5
+ - CI # runs after CI workflow
6
types:
7
- completed
8
permissions:
@@ -14,7 +15,7 @@ jobs:
14
15
steps:
16
- uses: dorny/test-reporter@v1
17
with:
- artifact: test-results # artifact name
18
- name: JUnit Tests # Name of the check run which will be created
19
- path: target/test-reports/*.xml # Path to test results (inside artifact .zip)
20
- reporter: java-junit # Format of test results
+ artifact: test-results # artifact name
+ name: Java Tests
+ path: target/test-reports/*.xml
21
+ reporter: java-junit
0 commit comments