48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
name: Actions
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
|
|
jobs:
|
|
Lint Code (Ruff):
|
|
runs-on: docker
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Ruff
|
|
run: pip install ruff
|
|
|
|
- name: Analysing code with Ruff
|
|
run: ruff check $(git ls-files '*.py')
|
|
continue-on-error: true
|
|
|
|
Lint Code (MyPy):
|
|
runs-on: docker
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install MyPy
|
|
run: pip install mypy
|
|
|
|
- name: Analysing code with MyPy
|
|
run: mypy $(git ls-files '*.py')
|
|
continue-on-error: true
|
|
|
|
Lint Code (Pylint):
|
|
runs-on: docker
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Pylint
|
|
run: pip install pylint
|
|
|
|
- name: Analysing code with Pylint
|
|
run: pylint --rcfile=.gitea/workflows/config/.pylintrc $(git ls-files '*.py')
|
|
continue-on-error: true
|