We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feae278 commit 63f6a4aCopy full SHA for 63f6a4a
1 file changed
.github/workflows/idefix-ci-doc.yml
@@ -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