-
-
Notifications
You must be signed in to change notification settings - Fork 254
31 lines (31 loc) · 654 Bytes
/
sphinx.yml
File metadata and controls
31 lines (31 loc) · 654 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
on:
push:
branches-ignore:
- 'ci-test'
tags-ignore:
- '**'
pull_request:
schedule:
- cron: '13 15 * * *'
workflow_dispatch:
jobs:
sphinx:
strategy:
fail-fast: false
matrix:
dir:
- python-oxidized-importer/docs
- pyembed/docs
- pyoxy/docs
- tugger/docs
- docs
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Run Sphinx
run: |
python3.12 -m pip install Sphinx==8.1.3
make -C ${{ matrix.dir }} html