2022-11-22 13:03:03 -06:00
|
|
|
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:
|
2025-01-15 13:50:39 -06:00
|
|
|
- name: Checkout the repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Download the artifact
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
name: Trick_macos
|
|
|
|
path: . # download the artifact in the current directory
|
|
|
|
|
|
|
|
- name: Report the test results
|
|
|
|
uses: dorny/test-reporter@v1
|
2022-11-22 13:03:03 -06:00
|
|
|
with:
|
|
|
|
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
|