Skip to content

Commit

Permalink
let pylint only fail for warning and errors
Browse files Browse the repository at this point in the history
  • Loading branch information
f0sh committed Jun 29, 2023
1 parent ff06f57 commit a59c242
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install pylint pylint-exit
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
pylint $(git ls-files '*.py') | pylint-exit --error-fail --warn-fail $?

0 comments on commit a59c242

Please sign in to comment.