We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dceff6d commit 5779371Copy full SHA for 5779371
.github/workflows/python-package.yml
@@ -42,7 +42,7 @@ jobs:
42
run: |
43
python -m pip install --upgrade pip
44
python -m pip install flake8 pytest
45
- python -m pip install ${{ requirements-cmd }}
+ python -m pip install ${{ matrix.requirements-cmd }}
46
- name: Lint with flake8
47
48
# stop the build if there are Python syntax errors or undefined names
@@ -51,4 +51,4 @@ jobs:
51
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
52
- name: Test with pytest
53
54
- ${{ pytest-run-cmd }}
+ ${{ matrix.pytest-run-cmd }}
0 commit comments