Skip to content

Commit 63f6a4a

Browse files
committed
test the documentation generation workflow
1 parent feae278 commit 63f6a4a

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Idefix CIs
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- master
7+
- develop
8+
- docCI
9+
pull_request:
10+
paths-ignore:
11+
- '.github/ISSUE_TEMPLATE/*'
12+
13+
14+
jobs:
15+
ReadTheDocs:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Check out repo
19+
uses: actions/checkout@v3
20+
with:
21+
submodules: recursive
22+
- name: install dependencies
23+
run: python -m pip install --exists-action=w --no-cache-dir -r doc/python_requirements.txt
24+
- name: compile documentation
25+
run: python -m sphinx -T -b html -d _build/doctrees -D language=en . ./html
26+

0 commit comments

Comments
 (0)