Skip to content

Bump django from 6.0.1 to 6.0.2 #2

Bump django from 6.0.1 to 6.0.2

Bump django from 6.0.1 to 6.0.2 #2

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync --frozen
- name: Run tests
run: uv run manage.py test