Skip to content

Commit 2d2dcd0

Browse files
authored
Merge pull request #305 from idefix-code/docCI
MNT: test the documentation generation workflow
2 parents feae278 + bfa54f7 commit 2d2dcd0

File tree

1 file changed

+24
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)