1
1
Fork 0
PythonLearning/.gitea/workflows/lint.yaml
SeaswimmerTheFsh 7d32076787
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 3s
Update .gitea/workflows/lint.yaml
2024-04-29 22:58:40 +00:00

20 lines
No EOL
517 B
YAML

name: Actions
on:
push:
branches:
- 'master'
jobs:
Lint Code (Ruff & Pylint):
runs-on: docker
container: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
steps:
- name: Checkout
uses: actions/checkout@v3
- 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')