1
1
Fork 0

Update .gitea/workflows/lint.yaml
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 3s

This commit is contained in:
Seaswimmer 2024-04-29 22:58:40 +00:00
parent d81e58d9d9
commit 7d32076787
Signed by: CoastalCommitsManagement
GPG key ID: 7E73189F651A553F

View file

@ -13,8 +13,8 @@ jobs:
uses: actions/checkout@v3
- name: Analysing code with Ruff
run: ./.venv/bin/ruff check $(git ls-files '*.py')
run: ruff check $(git ls-files '*.py')
continue-on-error: true
- name: Analysing code with Pylint
run: ./.venv/bin/pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
run: pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')