Skip to content

Commit 827184d

Browse files
committed
chore(deps): bump action-junit-report to v5
1 parent 47004d9 commit 827184d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Diff for: .github/workflows/ci.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: "Run check on project"
5050
run: "./gradlew generateUsage && ./gradlew check"
5151
- name: "junit result"
52-
uses: "mikepenz/action-junit-report@v4"
52+
uses: "mikepenz/action-junit-report@v5"
5353
if: "always()"
5454
with:
5555
check_name: "JUnit Report"
@@ -94,6 +94,12 @@ jobs:
9494
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/initial-version' }} # TODO remove when initial-version is removed
9595
- name: "Check if binary works"
9696
run: "./gradlew testAllCliNative"
97+
- name: "junit result {{ matrix.platform.name }}"
98+
uses: "mikepenz/action-junit-report@v5"
99+
if: "always()"
100+
with:
101+
check_name: "JUnit Report {{ matrix.platform.name }}"
102+
report_paths: "**/build/test-results/tes*/*.xml" # multiple test tasks
97103
- name: "upload binary" # for debugging
98104
uses: actions/upload-artifact@v4
99105
with:

0 commit comments

Comments
 (0)