SeaswimmerTheFsh
6e44fd9235
All checks were successful
Actions / Lint Code (Pylint) (push) Successful in 22s
20 lines
493 B
YAML
20 lines
493 B
YAML
name: Actions
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
|
|
jobs:
|
|
Lint Code (Pylint):
|
|
runs-on: docker
|
|
container: coastalcommits.com/seaswimmerthefsh/actionscontainers-galaxycogs:latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: poetry install --with dev --no-root
|
|
|
|
- name: Analysing code with Pylint
|
|
run: pylint --rcfile .forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
|