Skip to content

Test Report

Test Report #467

Workflow file for this run

name: Test Report
on:
workflow_run:
workflows: ["CI"]
types:
- completed
permissions:
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Download Test Report
uses: dawidd6/action-download-artifact@bf251b5aa9c2f7eeb574a96ee720e24f801b7c11 # v6
with:
name: test-results
workflow: ${{ github.event.workflow.id }}
run_id: ${{ github.event.workflow_run.id }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@db71d41eb79864e25ab0337e395c352e84523afe # v4
with:
commit: ${{ github.event.workflow_run.head_sha }}
report_paths: "**/build/test-results/*/TEST-*.xml"