mirror of
https://github.com/nasa/trick.git
synced 2025-02-08 03:40:24 +00:00
* Updated to Github actions v4 as Github actions v3 will be closing down by 1/30/25. * Updated to use actions/checkout action at the v4 branch as well to be consistent with artifacts. It is recommended to use a sepcific version or tag instead of master to ensure stability and predictability. * Made the artifact name unique within the workflow run.
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@v4
|
|
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
|