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 f23e4d8 commit 3d85109Copy full SHA for 3d85109
1 file changed
.github/workflows/build.yml
@@ -39,11 +39,20 @@ jobs:
39
40
- name: Test the plugin
41
run: |
42
- hurl --test --variables-file test/test.env --jobs 1 test/*.hurl
+ hurl --test --report-junit test-results.xml --variables-file test/test.env --jobs 1 test/*.hurl
43
44
- name: Expose Openfire logs
45
uses: actions/upload-artifact@v4
46
if: always() # always run even if the previous step fails
47
with:
48
name: Openfire server logs
49
path: openfire/logs/*
50
+
51
+ - name: Publish Test Report
52
+ uses: mikepenz/action-junit-report@v4
53
+ if: always() # always run even if the previous step fails
54
+ with:
55
+ report_paths: 'test-results.xml'
56
+ suite_regex: '*'
57
+ include_passed: true
58
+ detailed_summary: true
0 commit comments