Skip to content

Commit

Permalink
[CI] Add JUnit test reports
Browse files Browse the repository at this point in the history
  • Loading branch information
pkryger committed Nov 17, 2024
1 parent 3a03166 commit 45ab719
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
runs-on: ${{ matrix.os }}
env:
ci_tests: true
EMACS_TEST_VERBOSE: true
EMACS_TEST_JUNIT_REPORT: true
strategy:
matrix:
os:
Expand Down Expand Up @@ -50,6 +52,12 @@ jobs:
- name: Unit tests
run: .emacs.d/.ci/unit-tests.sh

- name: Publish test report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # Always run even if the previous step fails
with:
report_paths: '.emacs.d/modules/*.t.xml'

- name: Verify no obsolete cl- functions
run: .emacs.d/.ci/unit-test-cl.sh

Expand Down

0 comments on commit 45ab719

Please sign in to comment.