-
Notifications
You must be signed in to change notification settings - Fork 109
45 lines (38 loc) · 1 KB
/
Copy pathdocs.yml
File metadata and controls
45 lines (38 loc) · 1 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Docs
on:
push:
branches: [main]
paths:
- "docs/**"
- "pyphi/**"
- "pyproject.toml"
- "uv.lock"
- ".github/workflows/docs.yml"
pull_request:
branches: [main]
paths:
- "docs/**"
- "pyphi/**"
- "pyproject.toml"
- "uv.lock"
- ".github/workflows/docs.yml"
concurrency:
group: docs-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python 3.13
run: uv python install 3.13
- name: Install dependencies
run: uv sync --python 3.13 --group docs --all-extras
- name: Build documentation (warnings are errors, cells execute)
run: uv run --group docs --all-extras sphinx-build -W --keep-going -b html docs docs/_build/html