Skip to content

Fix tests

Fix tests #171

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
django-version: ["4.2", "5.0", "5.1"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --no-dev --extra test
- name: Install Specific Django ${{ matrix.django-version }}
run: uv add django~=${{ matrix.django-version }}
- name: Run tests
run: uv run --with django~=${{ matrix.django-version }} pytest