From 45ab719e6b61ff6de998fd507067dfadb4cdebe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Kryger?= Date: Sun, 17 Nov 2024 10:59:00 +0000 Subject: [PATCH] [CI] Add JUnit test reports --- .github/workflows/tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5f2fac2c..52f722a8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: @@ -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