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 56e49b2 + 56a1e56 commit 572fb40Copy full SHA for 572fb40
.github/workflows/build-sphinx.yml
@@ -0,0 +1,28 @@
1
+name: Build Sphinx Docs
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
+jobs:
9
+ build-docs:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v3
15
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v5
18
+ with:
19
+ python-version: '3.10'
20
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install -r requirements.txt
25
26
+ - name: Build documentation
27
28
+ make html
requirements.txt
@@ -0,0 +1,3 @@
+Sphinx>=4.2.0,<8
+sphinx-multiproject
+myst-parser
0 commit comments