Skip to content

.github/workflows/sphinx.yml #1778

.github/workflows/sphinx.yml

.github/workflows/sphinx.yml #1778

Workflow file for this run

on:
push:
pull_request:
schedule:
- cron: '30 13 * * *'
jobs:
sphinx:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.29"
- name: Run Sphinx
run: |
uv venv --python 3.12 venv
source venv/bin/activate
uv pip install -r ci/requirements.txt
uv pip install --config-settings=--build-option=--no-c-backend .
uv pip install Sphinx==5.3.0
make -C docs html