Skip to content

Replace Django 5.0 with 5.1 (#278) #8

Replace Django 5.0 with 5.1 (#278)

Replace Django 5.0 with 5.1 (#278) #8

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 check .
ruff format --check .
isort src/organizations --check --diff