Skip to content

Commit

Permalink
Try JUnit report
Browse files Browse the repository at this point in the history
  • Loading branch information
beutlich committed Jan 26, 2024
1 parent 5b9a8d5 commit a902af8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/checkCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,13 @@ jobs:
SRCDIR: ${{ github.workspace }}/Modelica/Resources/BuildProjects/CMake
TESTDIR: ${{ github.workspace }}/.CI/Test
- name: Run tests
run: ctest --test-dir build --build-config ${{ matrix.configuration }} --verbose
run: ctest --test-dir build --build-config ${{ matrix.configuration }} --verbose --output-junit junit-${{ matrix.compiler }}.xml
- name: Publish test report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/junit-*.xml'
annotate_only: true

html_documentation_checks:
name: html-documentation-checks
Expand Down

0 comments on commit a902af8

Please sign in to comment.