Skip to content

Commit

Permalink
Install packaging dependencies before others when linting code in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ushkarev committed Feb 16, 2023
1 parent 8850bb2 commit d0d9a83
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install linting dependencies
run: pip install -U setuptools pip wheel -r requirements-lint.txt
- name: Update setuptools pip and wheel
run: pip install -U setuptools pip wheel
- name: Install linting requirements
run: pip install -r requirements-lint.txt
- name: Lint code
run: flake8 --verbose

0 comments on commit d0d9a83

Please sign in to comment.