From eaaf65822a1d76b9234047b02036d3e3f8ae4901 Mon Sep 17 00:00:00 2001 From: Martin Mauch Date: Wed, 22 Jan 2025 11:56:08 +0100 Subject: [PATCH] build: Publish test reports --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d92daa3..b3c571d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,17 @@ jobs: - name: Test run: ./mill spark-excel[${{ matrix.scala }},${{ matrix.spark }}].test + - name: Publish Test Report + uses: mikepenz/action-junit-report@v5 + if: always() # always run even if the previous step fails + with: + fail_on_failure: false + include_passed: false + detailed_summary: true + annotate_only: true + require_tests: false + report_paths: 'out/**/test-report.xml' + publish: name: Publish Artifacts needs: [build]