Skip to content

deps: lock to django 4 #4

deps: lock to django 4

deps: lock to django 4 #4

name: Linting & formatting
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Linting and Formatting
steps:
- name: Cloning repo
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install Dependencies
run: poetry install
- name: Run Linters
run: |
poetry run black --check .
poetry run isort --check-only --diff .
poetry run flake8