mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 12:25:30 +00:00
23 lines
No EOL
667 B
YAML
23 lines
No EOL
667 B
YAML
name: Build Torque Test Report
|
|
description: Upload Torques unit test artifact.
|
|
inputs:
|
|
name:
|
|
description: The name of the unit test.
|
|
default: "${{github.job}}"
|
|
artifact-name:
|
|
description: The name of the artifact.
|
|
required: true
|
|
path:
|
|
description: The path to the upload.
|
|
required: true
|
|
default: "**/My Projects/Torque3D/game/test_detail.xml"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Test Reporter
|
|
uses: phoenix-actions/test-reporting@v12
|
|
with:
|
|
artifact: ${{inputs.artifact-name}}
|
|
name: ${{inputs.name}}
|
|
path: ${{inputs.path}}
|
|
reporter: java-junit |