Skip to content

Commit 83d26a6

Browse files
committed
ci: Process CTest output as junit report
1 parent efc4712 commit 83d26a6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,11 @@ jobs:
5656
5757
- name: Tests
5858
run: |
59-
ctest --test-dir build -C Release -VV
59+
ctest --test-dir build -C Release --output-junit test-results.xml
60+
61+
- name: Publish Test Report
62+
uses: mikepenz/[email protected]
63+
if: success() || failure() # always run even if the previous step fails
64+
with:
65+
report_paths: 'build/test-results.xml'
6066

0 commit comments

Comments
 (0)