Torque3D/.github/workflows/test-results-mac.yml
marauder2k7 673f983404 update all actions
-updated all actions that were causing issues
-changed macos to 13 instead of latest until file issue is sorted
2024-04-28 21:14:26 +01:00

40 lines
1.1 KiB
YAML

name: Mac Test Results
on:
workflow_run:
workflows: ["MacOSX Build"]
types:
- completed
permissions:
checks: write
jobs:
checks:
name: ${{matrix.config.name}}
runs-on: ${{matrix.config.runos}}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Mac Test Results",
runos: macos-13,
artifact-name: "torque3dMacOSXCLANGUnitTest"
}
steps:
- name: Download Mac Test Report
uses: dawidd6/action-download-artifact@v3
with:
path: macOS
name: ${{matrix.config.artifact-name}}
workflow: ${{ github.event.workflow.id }}
run_id: ${{ github.event.workflow_run.id }}
- name: Test Reporter
uses: phoenix-actions/test-reporting@v14
with:
name: ${{matrix.config.name}}
path: macOS/*.xml
reporter: java-junit