Skip to content

Switches to UV

Switches to UV #174

Workflow file for this run

name: Docs
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
enable-cache: true
- name: Build Docs
run: make docs
# Only deploy if main, otherwise just build for testing
- name: Deploy
if: endsWith(github.ref, '/main')
run: uv run --with ".[docs]" mkdocs gh-deploy --force