You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 4, 2024. It is now read-only.
description: 'Github token, if there are dependencies, this should be a PAT so that the other repos can be cloned'
6
+
required: false
7
+
default: ${{ github.token }}
8
+
ref:
9
+
description: 'Git ref to use'
10
+
required: false
11
+
default: ${{ github.ref }}
12
+
test-command:
13
+
description: 'What test command to run'
14
+
required: false
15
+
default: 'go test'
16
+
test-working-directory:
17
+
description: 'Directory to run tests from'
18
+
required: false
19
+
default: 'test'
20
+
wait-for-ports:
21
+
description: 'Ports to wait for, used for dependent charts, if those charts need exposed local ports as part of testing. Comma separated list such as `8000,8001`'
22
+
required: false
23
+
default: ''
24
+
max-wait:
25
+
description: 'Max time in milliseconds to wait for readiness on ports set in `wait-for-ports`'
26
+
required: false
27
+
default: 300000
28
+
check-interval:
29
+
description: 'Interval to check readiness on ports set in `wait-for-ports`'
30
+
required: false
31
+
default: 5000
32
+
helm-charts:
33
+
description: 'Helm charts to install, a json formatted string, that is a list of objects'
34
+
required: false
35
+
default: '[]'
36
+
credentials-json:
37
+
description: 'Gcloud service account credentials json. This is required if you are installing helm charts'
38
+
required: false
39
+
project-id:
40
+
description: 'gcloud project id. This is required if you are installing helm charts'
41
+
required: false
42
+
region:
43
+
description: 'artifact registry region'
44
+
required: false
45
+
default: 'us-west1'
46
+
repository:
47
+
description: 'artifact registry repository'
48
+
required: false
49
+
default: 'charts'
50
+
helm-install-wait-timeout:
51
+
description: 'How long to wait for installed charts to be healthy before failing'
52
+
required: false
53
+
default: 3m
54
+
dependencies:
55
+
description: 'Other git repos in this organization to clone and run skaffold for. Should be a comma separated list of short repository names, excluding the organization'
56
+
required: false
57
+
default: ''
58
+
sleep:
59
+
description: 'Seconds to sleep before running tests'
0 commit comments