Skip to content

ci(pre-commit): 👷 auto update (#508) #845

ci(pre-commit): 👷 auto update (#508)

ci(pre-commit): 👷 auto update (#508) #845

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
run-tests-across-versions:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
django-version: ['4.2.*', '5.0.*', '5.1.*']
django-ninja-version: ['1.0.*', '1.1.*', '1.2.*', '1.3.*']
django-rest-testing: ['0.1.*']
exclude:
- python-version: '3.9'
django-version: '5.0.*'
- python-version: '3.9'
django-version: '5.1.*'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv venv
uv pip install coverage[toml]
uv pip install django==${{ matrix.django-version }}
uv pip install django-ninja==${{ matrix.django-ninja-version }}
uv pip install django-rest-testing==${{ matrix.django-rest-testing }}
uv pip install -e .
- name: Run tests with coverage
run: |
uv run --no-project coverage run -m django test --settings=tests.test_settings
uv run --no-project coverage report --fail-under=100