Skip to content

Commit

Permalink
trying this again
Browse files Browse the repository at this point in the history
  • Loading branch information
mark11778 committed Jan 24, 2025
1 parent 6dbf175 commit 49a212c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ jobs:
- name: Runing Pylint
run: |
find . -name '*.py' -exec pylint --fail-under=8.5 {} \;
failed=0
for file in $(find . -name '*.py'); do
pylint --fail-under=8.5 "$file" || failed=1
done
exit $failed

0 comments on commit 49a212c

Please sign in to comment.