mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
fb0a760a71
closes #1404
21 lines
567 B
YAML
21 lines
567 B
YAML
name: 'Report macOS'
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ['macOS'] # runs after CI workflow
|
|
types:
|
|
- completed
|
|
jobs:
|
|
report:
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dorny/test-reporter@v1
|
|
with:
|
|
artifact: Trick_macos # artifact name
|
|
name: Results_Trick_macos # Name of the check run which will be created
|
|
path: '*.xml' # Path to test results (inside artifact .zip)
|
|
reporter: java-junit # Format of test results
|