Report macOS #1270
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: | |
| - name: Download artifact from latest attempt | |
| uses: dawidd6/action-download-artifact@v6 # This action downloads + extracts | |
| with: | |
| workflow: macOS # The workflow that creates the artifact | |
| name: Trick_macos # Name of the artifact | |
| - name: Publish Test Report | |
| uses: dorny/test-reporter@v1 | |
| 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 |