.github/workflows/sphinx.yml #1777
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |