Skip to content

Add support for Django 5.1 #133

Add support for Django 5.1

Add support for Django 5.1 #133

Workflow file for this run

name: build
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- main
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Use tox to run test suite
run: python -m tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)