Skip to content

Add Django 5.x, drop 4.1 (#267) #5

Add Django 5.x, drop 4.1 (#267)

Add Django 5.x, drop 4.1 (#267) #5

Workflow file for this run

name: Lint
on:
push:
paths:
- 'src/'
- 'tests/'
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11.5
- name: Install dependencies
run: pip install .[linting]
- name: Run flake8
run: |
ruff .
ruff format --check .
isort src/organizations --check --diff