Skip to content

Commit b4ea03e

Browse files
committed
test.yml: use a constant list instead of fromJSON
This was pointed out by zizmor, the GHA linter.
1 parent a422646 commit b4ea03e

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -243,17 +243,15 @@ jobs:
243243
continue-on-error: >-
244244
${{
245245
contains(
246-
fromJSON(
247-
'[
248-
"windows-py310-pluggy",
249-
"windows-py313",
250-
"ubuntu-py310-pluggy",
251-
"ubuntu-py310-freeze",
252-
"ubuntu-py313",
253-
"macos-py310",
254-
"macos-py313"
255-
]'
256-
),
246+
[
247+
"windows-py310-pluggy",
248+
"windows-py313",
249+
"ubuntu-py310-pluggy",
250+
"ubuntu-py310-freeze",
251+
"ubuntu-py313",
252+
"macos-py310",
253+
"macos-py313"
254+
],
257255
matrix.name
258256
)
259257
&& true

0 commit comments

Comments
 (0)