File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -44,14 +44,19 @@ jobs:
44
44
fail-fast : false
45
45
matrix :
46
46
env-paths :
47
- - ["envs/env1.yaml"]
48
- - ["envs/env2.yaml"]
49
- - ["envs/env1.yaml", "envs/env2.yaml"]
47
+ - " envs/env1.yaml"
48
+ - " envs/env2.yaml"
49
+ - |
50
+ envs/env1.yaml
51
+ envs/env2.yaml
50
52
expected-failure : ["false"]
51
53
include :
52
- - env-paths : ["envs/failing-env1.yaml"]
54
+ - env-paths : |
55
+ envs/failing-env1.yaml
53
56
expected-failure: "true"
54
- - env-paths : ["envs/env1.yaml", "envs/failing-env1.yaml"]
57
+ - env-paths : |
58
+ envs/env1.yaml
59
+ envs/failing-env1.yaml
55
60
expected-failure: "true"
56
61
57
62
steps :
Original file line number Diff line number Diff line change 23
23
COLUMNS : 120
24
24
FORCE_COLOR : 3
25
25
run : |
26
- python minimum_versions.py ${{ join( inputs.environment-paths, ' ') }}
26
+ python minimum_versions.py " ${{ inputs.environment-paths }}"
You can’t perform that action at this time.
0 commit comments