From bac0f97d2f548bf65514ec46d6a4923d46ae8d8b Mon Sep 17 00:00:00 2001 From: David LeGare Date: Tue, 10 Nov 2020 11:02:23 -0600 Subject: [PATCH] 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. --- action.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/action.yml b/action.yml index d570135..60f35f6 100644 --- a/action.yml +++ b/action.yml @@ -6,6 +6,24 @@ inputs: 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.' outputs: artifactsPath: description: 'Path where the artifacts are stored'