Skip to content

Bump django from 4.2.20 to 4.2.24 #243

Bump django from 4.2.20 to 4.2.24

Bump django from 4.2.20 to 4.2.24 #243

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
# Workaround for https://github.com/jazzband/pip-tools/issues/2131
- name: Downgrade pip
run: pip install --upgrade pip==24.2
- name: Install dependencies
run: pip install -r requirements.txt -r requirements-dev.txt
- name: Validate dependencies
uses: PeterJCLaw/validate-generated-files@v1
with:
command: ./script/compile-requirements.sh
files: requirements*.txt
- name: Static type checking
run: make type
- name: Formatting
run: make format-check
- name: Lint
run: make lint
- name: Unit tests
run: make test
- name: Django Static Checks
run: make check