Skip to content

Fix build-doc error (#6) #7

Fix build-doc error (#6)

Fix build-doc error (#6) #7

Workflow file for this run

name: build-doc
on:
push:
branches:
- main
defaults:
run:
working-directory: ./
jobs:
build-doc:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "./.python-version"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install the project
run: uv sync --group doc
- name: Build doc
run: uv run mkdocs gh-deploy