Skip to content

Commit

Permalink
try with explicity cat statement
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsasani committed Jan 11, 2024
1 parent 47b555a commit 3c6737e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U pip wheel
pip install flake8 pytest numpy==1.23.5
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install flake8 pytest
if [ -f requirements.txt ]; then cat requirements.txt | xargs -L1 pip install; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit 3c6737e

Please sign in to comment.