Skip to content

Commit

Permalink
update lint runner to use pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
rpreen committed Oct 22, 2024
1 parent bd7f7f3 commit 04425eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install dependencies
- name: Install
run: |
python -m pip install --upgrade pip
pip install pylint pytest pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install --upgrade pip
pip install .[test]
pip install pylint
- name: pylint
run: |
Expand Down

0 comments on commit 04425eb

Please sign in to comment.