1
1
Fork 0

Fixed workflow
Some checks failed
Lint Code / Ruff (push) Successful in 7s
Lint Code / MyPy (push) Failing after 9s
Lint Code / Pylint (push) Failing after 9s

This commit is contained in:
EntropicDecay 2024-05-23 22:33:29 -05:00
parent 380ff808e6
commit c04142c2bd

View file

@ -15,7 +15,6 @@ jobs:
- name: Analysing code
run: ruff check $(git ls-files '*.py')
continue-on-error: true
MyPy:
runs-on: docker
@ -29,7 +28,6 @@ jobs:
- name: Analysing code
run: mypy $(git ls-files '*.py')
continue-on-error: true
Pylint:
runs-on: docker
@ -43,4 +41,3 @@ jobs:
- name: Analysing code
run: pylint --rcfile=.gitea/workflows/config/.pylintrc $(git ls-files '*.py')
continue-on-error: true