Merge pull request #53 from stuartmaxwell/publish-docs-workflow #208
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: push | |
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 |