Skip to content

Merge origin/main: adopt Kartik's metrics watcher as Exercise 4 #1

Merge origin/main: adopt Kartik's metrics watcher as Exercise 4

Merge origin/main: adopt Kartik's metrics watcher as Exercise 4 #1

Workflow file for this run

name: Docs
on:
push:
branches: [main]
paths:
- "docs/**"
- "mkdocs.yml"
- "pyproject.toml"
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.13
- name: Install docs dependencies
run: uv sync --group docs
- name: Deploy to GitHub Pages
run: uv run --group docs mkdocs gh-deploy --force --clean