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 6cdf1aa commit c9d3b28Copy full SHA for c9d3b28
.github/workflows/python-package.yml
@@ -28,8 +28,8 @@ jobs:
28
run: |
29
python -m pip install --upgrade pip
30
pip install flake8 pytest
31
- - if: -f requirements.txt
32
- run: pip install -r requirements.txt
+ - if: ${{ matrix.os == ubuntu-latest }}
+ run: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33
- name: Lint with flake8
34
35
# stop the build if there are Python syntax errors or undefined names
0 commit comments