mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
30 lines
766 B
YAML
30 lines
766 B
YAML
name: Windows Test Results
|
|
on:
|
|
workflow_run:
|
|
workflows: [Windows Build 🟥🟩🟦🟨]
|
|
types: [ completed ]
|
|
|
|
permissions:
|
|
checks: write
|
|
|
|
jobs:
|
|
checks:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Download Windows
|
|
uses: dawidd6/action-download-artifact@v2
|
|
with:
|
|
path: Windows
|
|
name: torque3dWindowsMSVCUnitTest
|
|
workflow: ${{ github.event.workflow.id }}
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
|
|
- name: Test Reporter
|
|
uses: phoenix-actions/test-reporting@v12
|
|
if: success() || failure() # run this step even if previous step failed
|
|
with:
|
|
name: Build Tests
|
|
path: My Projects/Torque3D/game/test_*.xml
|
|
reporter: java-junit
|
|
|