mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-17 21:53:47 +00:00
test workflow
This commit is contained in:
parent
9a4d12e257
commit
055867a4e3
3 changed files with 70 additions and 94 deletions
19
.github/workflows/actions/upload-artifact/action.yml
vendored
Normal file
19
.github/workflows/actions/upload-artifact/action.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
name: Upload Torque Test Report
|
||||
description: Upload Torques unit test artifact.
|
||||
inputs:
|
||||
name:
|
||||
description: The name of the unit test.
|
||||
default: "${{github.job}}"
|
||||
path:
|
||||
description: The path to the upload.
|
||||
required: true
|
||||
default: "**/My Projects/Torque3D/game/test_detail.xml"
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
name: Upload Torque Test Report
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{inputs.name}}
|
||||
path: ${{inputs.path}}
|
||||
retention-days: 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue