Skip to content

docs: add models module to code reference (#101) #52

docs: add models module to code reference (#101)

docs: add models module to code reference (#101) #52

Workflow file for this run

name: Build docs
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'docs/**'
jobs:
build-notebooks:
uses: ./.github/workflows/build-notebooks.yml
secrets: inherit
deploy:
needs: build-notebooks
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.9.5"
- name: Set up Python
run: uv python install
- name: Install dependencies for docs
run: uv sync --group docs
- name: Download artifact from previous step
uses: actions/download-artifact@v5
with:
name: notebooks
path: docs/notebooks
- name: Build and deploy docs
run: uv run mkdocs gh-deploy --force --clean --verbose