Skip to content

docs: sync planning and code review docs to main #29

docs: sync planning and code review docs to main

docs: sync planning and code review docs to main #29

Workflow file for this run

name: Docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Deploy docs
run: uv run mkdocs gh-deploy --force