Skip to content

Commit

Permalink
build: Publish test reports
Browse files Browse the repository at this point in the history
  • Loading branch information
nightscape committed Jan 22, 2025
1 parent d8d3bcb commit eaaf658
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit eaaf658

Please sign in to comment.