Skip to content

Commit

Permalink
Expose test results
Browse files Browse the repository at this point in the history
  • Loading branch information
Fishbowler committed Oct 17, 2024
1 parent f23e4d8 commit 3d85109
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,20 @@ jobs:

- name: Test the plugin
run: |
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
- name: Expose Openfire logs
uses: actions/upload-artifact@v4
if: always() # always run even if the previous step fails
with:
name: Openfire server logs
path: openfire/logs/*

- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: always() # always run even if the previous step fails
with:
report_paths: 'test-results.xml'
suite_regex: '*'
include_passed: true
detailed_summary: true

0 comments on commit 3d85109

Please sign in to comment.