Skip to content

Add Django 6.1 testing #178

Add Django 6.1 testing

Add Django 6.1 testing #178

Workflow file for this run

name: Run Tests
on:
- push
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
django-version: ["52", "60", "61"]
exclude:
# Django 6.0/6.1 requires Python 3.12+
- python-version: "3.10"
django-version: "60"
- python-version: "3.11"
django-version: "60"
- python-version: "3.10"
django-version: "61"
- python-version: "3.11"
django-version: "61"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install tox
run: pip install tox tox-uv
- name: Run tests
run: tox run -e py$(echo "${{ matrix.python-version }}" | tr -d .)-django${{ matrix.django-version }}