Skip to content

removed static

removed static #967

name: Python linters
on:
push:
branches:
- '**'
pull_request:
branches:
- develop
jobs:
lint:
name: Check the code with python linters
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install black ruff
- name: Check with ruff
run: ruff check .
- name: Check with black
run: black . --check --line-length 79 --exclude 'migrations/|.*settings(\.py|/)?'