Add all parameters to action.yml
The added parameters were already supported but weren't listed, resulting in warnings for projects that use those parameters.pull/79/head
parent
c4e44617e2
commit
bac0f97d2f
18
action.yml
18
action.yml
|
@ -6,6 +6,24 @@ inputs:
|
||||||
required: false
|
required: false
|
||||||
default: '2019.2.11f1'
|
default: '2019.2.11f1'
|
||||||
description: 'Version of unity to use for testing the project.'
|
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.'
|
||||||
outputs:
|
outputs:
|
||||||
artifactsPath:
|
artifactsPath:
|
||||||
description: 'Path where the artifacts are stored'
|
description: 'Path where the artifacts are stored'
|
||||||
|
|
Loading…
Reference in New Issue