forked from game-ci/unity-test-runner
-
Notifications
You must be signed in to change notification settings - Fork 11
/
action.yml
49 lines (46 loc) · 1.19 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: 'Unity Runner'
author: Paul Pacheco <[email protected]>
description: 'Run unity in batch mode'
inputs:
args:
required: true
description: 'Arguments to pass to unity'
workdir:
required: false
default: ''
description: 'working directory'
solution:
description: "Project solution, typically"
required: false
default: 'workspace.sln'
testCommand:
description: "Command to invoke tests"
required: false
projectKey:
description: "Specifies the key of the analyzed project in SonarQube"
required: true
projectName:
description: "Specifies the name of the analyzed project in SonarQube"
required: true
sonarHostname:
description: "The server URL"
default: "https://sonarcloud.io"
required: false
sonarOrganisation:
description: "Organisation"
required: true
beginArguments:
description: "Arguments to append to the begin command"
required: false
endArguments:
description: "Arguments to append to the end command"
required: false
outputs:
filePath:
description: 'Path of the manual activation file'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'box'
color: 'gray-dark'