Skip to content

Commit c9d3b28

Browse files
committed
action test2
1 parent 6cdf1aa commit c9d3b28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
pip install flake8 pytest
31-
- if: -f requirements.txt
32-
run: pip install -r requirements.txt
31+
- if: ${{ matrix.os == ubuntu-latest }}
32+
run: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3333
- name: Lint with flake8
3434
run: |
3535
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)