Skip to content

Commit

Permalink
Update pylint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GigantPro committed Apr 3, 2023
1 parent ce56ab7 commit 8ee4aba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Upgrade pip
run: pip install --upgrade pip

- name: Install dependencies
run: poetry install --only dev
run: pip install pylint

- name: PyLint
run: poetry run linting
run: pylint -j$(nproc) $(git ls-files '*.py')

0 comments on commit 8ee4aba

Please sign in to comment.