Skip to content

Introduce pylint

Introduce pylint #1

Workflow file for this run

on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install black ruff pylint pylint-django
- name: Run Black
run: black --check --config pyproject.toml .
- name: Run Ruff
run: ruff check . --config pyproject.toml
- name: Run Pylint
run: pylint --load-plugins pylint_django --rcfile=.pylintrc backend/