-
-
Notifications
You must be signed in to change notification settings - Fork 115
24 lines (24 loc) · 618 Bytes
/
sphinx.yml
File metadata and controls
24 lines (24 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
env:
PIP_CONSTRAINT: 'ci/constraints.txt'
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