Skip to content

Commit

Permalink
CI: Add test reporting (prep for 0.15 changes)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsd committed Nov 25, 2024
1 parent 0eb0edb commit 4401b8d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/report_test_run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Report Test Run
on:
workflow_run:
workflows: [
Test Avian,
Test Parry,
]
types: [ completed ]

permissions:
checks: write
pull-requests: write

jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Download Test Report
uses: dawidd6/action-download-artifact@v2
with:
name: junit-test-results
workflow: ${{ github.event.workflow.id }}
run_id: ${{ github.event.workflow_run.id }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
with:
commit: ${{github.event.workflow_run.head_sha}}
report_paths: 'target/nextest/ci/junit.xml'
include_passed: true
comment: true
job_summary: true
detailed_summary: true
group_suite: true
check_name: ${{github.event.workflow.name}} Report

0 comments on commit 4401b8d

Please sign in to comment.