We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5356f53 commit 1278de8Copy full SHA for 1278de8
.github/workflows/test.yml
@@ -12,4 +12,9 @@ jobs:
12
- name: Run Unit Tests
13
shell: bash
14
run: ./run_unittests.sh
15
+ - name: Publish Test Report
16
+ uses: mikepenz/action-junit-report@v4
17
+ if: success() || failure() # always run even if the previous step fails
18
+ with:
19
+ report_paths: '/reports/*.xml'
20
0 commit comments