We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents feae278 + bfa54f7 commit 2d2dcd0Copy full SHA for 2d2dcd0
.github/workflows/idefix-ci-doc.yml
@@ -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