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 0059d54 commit 4c40fd6Copy full SHA for 4c40fd6
1 file changed
.github/workflows/pr-module-functional-tests.yml
@@ -48,15 +48,14 @@ jobs:
48
echo "exit_code=$result" >> "$GITHUB_OUTPUT"
49
50
- name: Format build output for PR comment
51
- if: steps.build.outputs.exit_code != '0'
52
- uses: mikepenz/action-junit-report@v4
+ if: always()
+ uses: dorny/test-reporter@v2
53
with:
54
- report_paths: |
55
- **/target/failsafe-reports/TEST-*.xml
56
- comment: true
57
- updateComment: true
+ name: Functional Tests
+ path: '**/target/failsafe-reports/TEST-*.xml'
+ reporter: java-junit
+ fail-on-error: true
58
token: ${{ secrets.GITHUB_TOKEN }}
59
- issue-number: ${{ github.event.pull_request.number }}
60
61
- name: Fail if functional tests failed
62
if: steps.build.outputs.exit_code != '0'
0 commit comments