Skip to content

Bump django from 6.0.2 to 6.0.3 #33

Bump django from 6.0.2 to 6.0.3

Bump django from 6.0.2 to 6.0.3 #33

Workflow file for this run

name: Test
on: ["pull_request"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Ruff Check
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # ratchet:astral-sh/ruff-action@v3
- name: Ruff Format
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # ratchet:astral-sh/ruff-action@v3
with:
args: "format --check --diff"
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.12", "3.13", "3.14"]
django: ["5.1", "5.2", "6.0"]
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Install uv
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7
- name: Set up Python ${{ matrix.python }}
run: uv python install ${{ matrix.python }}
- name: Install deps
run: uv sync --dev
- name: Run tests
run: uv run --with "django~=${{ matrix.django }}" pytest test