We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8f6319 commit 85713bdCopy full SHA for 85713bd
1 file changed
.github/workflows/CI.yml
@@ -19,6 +19,28 @@ permissions:
19
contents: read
20
21
jobs:
22
+ docs:
23
+ runs-on: ubuntu-latest
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ - uses: actions/setup-python@v5
27
+ with:
28
+ python-version: 3.x
29
+ - uses: PyO3/maturin-action@v1
30
31
+ command: develop
32
+ - name: Install dependencies
33
+ run: |
34
+ pip install sphinx sphinx_rtd_theme
35
+ - name: Sphinx build
36
37
+ sphinx-build docs/source _build
38
+ - name: Deploy to GitHub Pages
39
+ uses: peaceiris/actions-gh-pages@v4
40
41
+ github_token: ${{ secrets.GITHUB_TOKEN }}
42
+ publish_dir: _build/
43
+
44
linux:
45
runs-on: ${{ matrix.platform.runner }}
46
strategy:
0 commit comments