Skip to content

Commit c13f608

Browse files
committed
Create build_sphinx.yml
1 parent 8be7ae6 commit c13f608

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/build_sphinx.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Sphinx docs
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
paths:
7+
- '.github/workflows/build_sphinx.yml'
8+
- 'src/**'
9+
- 'docs/**'
10+
- 'files/**'
11+
12+
jobs:
13+
docs:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Set up Python 3.11
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: 3.11.6
22+
23+
- name: Build docs requirements
24+
run: pip install -r docs/requirements.txt
25+
26+
- name: Build docs
27+
run: make doc

0 commit comments

Comments
 (0)