-
-
Notifications
You must be signed in to change notification settings - Fork 143
32 lines (28 loc) · 732 Bytes
/
docs_check.yml
File metadata and controls
32 lines (28 loc) · 732 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
30
31
32
name: Check that docs build
on:
pull_request:
paths:
- './docs/**.png'
- './docs/book/content/theory/images/**.png'
- './docs/book/**.yml'
- './docs/book/**.bib'
- '**.md'
- './docs/book/content/api/**.rst'
- './ogcore/**.py'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.13"
- name: Install package and dependencies
run: uv sync --extra dev --extra docs
- name: Build # Build Jupyter Book
run: |
uv run make documentation