Fix pylint always failing

Merge pull request #146 from sheeeng/feature/pylint-exit
This commit is contained in:
Logykk 2021-10-27 10:36:37 +13:00 committed by GitHub
commit 8bab8a03c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ jobs:
- name: Setup Pylint
run: |
python -m pip install --upgrade pip
pip install pylint
pip install pylint pylint-exit
pip install -r requirements.txt
- name: Run Pylint
run: |
pylint $(git ls-files '*.py')
pylint $(git ls-files '*.py') || pylint-exit $?