We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37824e6 commit fb22875Copy full SHA for fb22875
.github/workflows/docs-check.yml
@@ -0,0 +1,30 @@
1
+name: Build Sphinx Documentation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+jobs:
10
+ build-docs:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v3
16
17
+ - name: Set up Python
18
+ uses: actions/setup-python@v4
19
+ with:
20
+ python-version: '3.11'
21
22
+ - name: Install dependencies
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install -r docs/requirements.txt
26
27
+ - name: Build Sphinx docs
28
29
+ cd docs
30
+ make html
.readthedocs.yaml
@@ -0,0 +1,9 @@
+version: 2
+sphinx:
+ configuration: docs/conf.py
+python:
+ version: 3.8
+ install:
+ - requirements: docs/requirements.txt
0 commit comments