SeaswimmerTheFsh
7d32076787
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 3s
20 lines
No EOL
517 B
YAML
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') |