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]