Skip to content

feat(docs): add mobile docs menu #3

feat(docs): add mobile docs menu

feat(docs): add mobile docs menu #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_call:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# Pinned exactly: setup-uv publishes no floating v9 major tag.
- uses: astral-sh/setup-uv@v9.0.0
with:
enable-cache: true
- name: Lint
run: uv run --extra dev ruff check .
- name: Format
run: uv run --extra dev ruff format --check .
# Browser and live tests need downloaded browsers and third-party
# services; the deselected suite is the deterministic contract.
- name: Test
run: uv run --extra dev pytest -q -m "not browser and not live"
- name: Build
run: uv run --with build python -m build