We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a522eaf commit 8bb6178Copy full SHA for 8bb6178
.github/workflows/benchmark.yml
@@ -89,11 +89,19 @@ jobs:
89
- name: Run CTests
90
# Run the CTest tests
91
working-directory: "${{github.workspace}}/build/tests"
92
- run: ctest
+ run: ctest --output-junit result.xml
93
shell: bash
94
95
+ - name: Test Summary
96
+ id: test_summary
97
+ uses: test-summary/[email protected]
98
+ with:
99
+ paths: "${{github.workspace}}/build/tests/result.xml"
100
+ if: always()
101
+
102
- name: Benchmark
103
run: python -m tools.benchmark -g
104
105
106
107
- name: Upload Graphs
0 commit comments