Skip to content

Commit 1a3ce94

Browse files
committed
More correct listing of nox envs for the GitHub actions workflow
What was here would break with noxenv docstrings.
1 parent 463fe2b commit 1a3ce94

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/ci.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@ jobs:
3434
- id: noxenvs-matrix
3535
run: |
3636
echo >>$GITHUB_OUTPUT noxenvs=$(
37-
nox --list-sessions |
38-
grep '^* ' |
39-
cut -d ' ' -f 2- |
40-
jq --raw-input --slurp 'split("\n") | map(select(. != ""))'
37+
nox --list-sessions --json | jq '[.[].session]'
4138
)
4239
4340
ci:

0 commit comments

Comments
 (0)