Skip to content

Commit cad881c

Browse files
committed
[CI] Fix env variables syntax
1 parent 1c01323 commit cad881c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,17 @@ jobs:
1616
matrix:
1717
include:
1818
- python-version: 3.7
19-
env: TOXENV=docs
19+
env:
20+
TOXENV: docs
2021
- python-version: 3.8
21-
env: TOXENV=flake8
22+
env:
23+
TOXENV: flake8
2224
- python-version: 3.8
23-
env: TOXENV=pylint
25+
env:
26+
TOXENV: pylint
2427
- python-version: 3.8
25-
env: TOXENV=security
28+
env:
29+
TOXENV: security
2630

2731
steps:
2832
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)