-
-
Notifications
You must be signed in to change notification settings - Fork 116
29 lines (29 loc) · 823 Bytes
/
Copy pathsphinx.yml
File metadata and controls
29 lines (29 loc) · 823 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
25
26
27
28
29
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
schedule:
- cron: '30 13 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: { }
jobs:
sphinx:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
with:
version: "0.8.11"
- name: Run Sphinx
run: |
uv venv --python 3.13 venv
source venv/bin/activate
uv pip install -r ci/requirements.docs.txt
uv pip install --config-settings=--global-option=--no-c-backend .
make -C docs html