Skip to content

Commit

Permalink
Update pylint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
FredNoonienSingh authored Jan 17, 2025
1 parent 81b27cb commit 3e79228
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -21,6 +21,9 @@ jobs:
- name: Create .pylintrc file
run: |
echo "disable=import-error" > .pylintrc
- name: Lint code (excluding specific directory)
run: |
find . -type f -name "*.py" \( -path "./map_analyzer" -prune \) -o -print0 | xargs -0 pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') --fail-under 5

0 comments on commit 3e79228

Please sign in to comment.