Skip to content

Commit

Permalink
pip install corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
xangeee committed Dec 11, 2023
1 parent 315e371 commit 78dba8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then cat requirements.txt | xargs -n 1 pip install #pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then cat requirements.txt | sed -e '/^\s*.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install #pip install -r requirements.txt; fi
- name: Lint with Ruff
run: |
pip install ruff
Expand Down

0 comments on commit 78dba8e

Please sign in to comment.