Skip to content

Commit e392123

Browse files
committed
workflows: Safer variable access
This does not seem like a serious issue but * zizmor complains about it * not assigning GHA variables in middle of bash scripts is a good idea in general. Signed-off-by: Jussi Kukkonen <[email protected]>
1 parent c2ea71d commit e392123

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/_test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ jobs:
8383
fi
8484
8585
- name: Run tox
86-
run: tox -e ${{ matrix.toxenv }}
86+
env:
87+
TOXENV: ${{ matrix.toxenv }}
88+
run: tox
8789

8890
summary:
8991
needs: test

0 commit comments

Comments
 (0)