fix(workflow): do not cancel pylint if ruff fails
All checks were successful
Actions / Lint Code (Ruff & Pylint) (push) Successful in 16s
Actions / Build Documentation (MkDocs) (push) Successful in 12s

This commit is contained in:
Seaswimmer 2024-02-28 11:30:04 -05:00
parent 95a947b019
commit fbb31dc0d4
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -18,6 +18,7 @@ jobs:
- name: Analysing code with Ruff
run: ruff check $(git ls-files '*.py')
continue-on-error: true
- name: Analysing code with Pylint
run: pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')