Skip to content

Test Report

Test Report #320

Workflow file for this run

name: Test Report
on:
workflow_run: # runs after CI workflow has finished
workflows: ['CI']
types: [completed]
jobs:
Report:
runs-on: ubuntu-latest
steps:
- name: Create Test Report
uses: dorny/test-reporter@v1
with:
artifact: test-results
name: ROS-Unit Tests
path: '**.xml' # Path to test results (inside artifact .zip)
reporter: java-junit