Skip to content

Update django todo example to use todo backend (#97) #237

Update django todo example to use todo backend (#97)

Update django todo example to use todo backend (#97) #237

Workflow file for this run

name: CI
permissions:
contents: read
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@v4
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: |
uv sync --dev
cd hello && uv run pywrangler dev --help
- name: Run tests
run: uv run pytest -vv