Merge pull request #65 from stuartmaxwell:pages-should-not-appear-in-… #236
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: Run Tests on all Supported Python and Django Versions | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
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 |