unity-test-runner/action.yml

36 lines
992 B
YAML
Raw Normal View History

2019-11-30 15:36:27 +00:00
name: 'Unity - Test runner'
author: Webber Takken <webber@takken.io>
description: 'Run tests for any Unity project.'
2020-01-29 20:49:35 +00:00
inputs:
unityVersion:
required: false
default: '2019.2.11f1'
description: 'Version of unity to use for testing the project.'
projectPath:
required: false
description: 'Path to the Unity project to be tested.'
testMode:
required: false
default: 'all'
description: 'The type of tests to be run by the test runner.'
artifactsPath:
required: false
default: 'artifacts'
description: 'Path where test results should be stored.'
useNetworkHost:
required: false
default: false
description: 'Initialzes Docker using the network host.'
customParameters:
required: false
description: 'Custom parameters to configure the test runner.'
2019-11-30 15:36:27 +00:00
outputs:
artifactsPath:
description: 'Path where the artifacts are stored'
branding:
icon: 'box'
color: 'gray-dark'
2020-01-29 20:49:35 +00:00
runs:
using: 'node12'
main: 'action/index.js'