mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Create test-results.yml
This commit is contained in:
parent
a8cf92fc67
commit
bbe0198709
29
.github/workflows/test-results.yml
vendored
Normal file
29
.github/workflows/test-results.yml
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
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
|
||||||
|
|
||||||
Loading…
Reference in a new issue