Skip to content

Update installation instructions #26

Update installation instructions

Update installation instructions #26

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Test that docs build without error
if: github.event_name == 'pull_request'
run: uv run mkdocs build --strict
- name: Deploy docs to GitHub Pages
if: github.event_name == 'push'
run: uv run mkdocs gh-deploy --strict --force