1
1
Fork 0

ordering
All checks were successful
Actions / Lint Code (Ruff, MyPy, & Pylint) (push) Successful in 15s

This commit is contained in:
SeaswimmerTheFsh 2024-05-08 12:49:17 -04:00
parent 4a8c750cbe
commit e84f1af036
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -19,10 +19,10 @@ jobs:
run: ruff check $(git ls-files '*.py') run: ruff check $(git ls-files '*.py')
continue-on-error: true continue-on-error: true
- name: Analysing code with Pylint
run: pylint --rcfile=.gitea/workflows/config/.pylintrc $(git ls-files '*.py')
continue-on-error: true
- name: Analysing code with MyPy - name: Analysing code with MyPy
run: mypy $(git ls-files '*.py') run: mypy $(git ls-files '*.py')
continue-on-error: true continue-on-error: true
- name: Analysing code with Pylint
run: pylint --rcfile=.gitea/workflows/config/.pylintrc $(git ls-files '*.py')
continue-on-error: true