Skip to content

Commit 3d85109

Browse files
committed
Expose test results
1 parent f23e4d8 commit 3d85109

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,20 @@ jobs:
3939

4040
- name: Test the plugin
4141
run: |
42-
hurl --test --variables-file test/test.env --jobs 1 test/*.hurl
42+
hurl --test --report-junit test-results.xml --variables-file test/test.env --jobs 1 test/*.hurl
4343
4444
- name: Expose Openfire logs
4545
uses: actions/upload-artifact@v4
4646
if: always() # always run even if the previous step fails
4747
with:
4848
name: Openfire server logs
4949
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

Comments
 (0)