Skip to content

[FIX] Spectrum edited name (#365) #221

[FIX] Spectrum edited name (#365)

[FIX] Spectrum edited name (#365) #221

Workflow file for this run

name: documentation
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build-documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.7"
enable-cache: true
- name: "Set up Python"
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Sphinx build
run: uv run sphinx-build docs/source _site
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4