Skip to content

Commit

Permalink
ci: add a job running pylint
Browse files Browse the repository at this point in the history
Signed-off-by: Davide Madrisan <[email protected]>
  • Loading branch information
madrisan committed Dec 22, 2024
1 parent 8c31f68 commit 981aacd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ jobs:
python-version: 3.8

- name: Install Python dependencies
run: pip install black flake8
run: pip install black flake8 pylint

- name: Run linters
uses: wearerequired/lint-action@v2
with:
auto_fix: false
black: true
flake8: false

- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')

0 comments on commit 981aacd

Please sign in to comment.