Skip to content

Commit

Permalink
fix: add poetry for pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrosjean committed Oct 9, 2023
1 parent 2b82c5a commit 54473da
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install pylint
run: pip install pylint
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry install
- name: Lint with pylint
run: pylint --jobs 0 $PACKAGE_DIR --fail-under 9
run: poetry run pylint --jobs 0 $PACKAGE_DIR --fail-under 9

format:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 54473da

Please sign in to comment.