Skip to content

Commit

Permalink
Install pip dependencies in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
john0227 committed Apr 10, 2024
1 parent cfd2c5d commit 46fd1b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dev-PR-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with ruff
run: |
pip install ruff==0.3.2
Expand Down

0 comments on commit 46fd1b8

Please sign in to comment.