Skip to content

Test Report

Test Report #2028

Workflow file for this run

name: 'Test Report'
on:
workflow_run:
workflows: [ 'CI' ] # runs after CI workflow
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Merge Artifacts
uses: actions/download-artifact@v4
with:
pattern: test-results-*
merge-multiple: true
path: test-results
- run: ls -R
- uses: dorny/test-reporter@v1
with:
artifact: test-results # artifact name
name: Test Results # Name of the check run which will be created
path: 'test-results/target/test-reports/TEST-*.xml' # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results