There was an error while loading. Please reload this page.
1 parent a490ae5 commit 7a28d23Copy full SHA for 7a28d23
1 file changed
.github/workflows/documentation.yml
@@ -21,6 +21,19 @@ concurrency:
21
cancel-in-progress: false
22
23
jobs:
24
+ build:
25
+ runs-on: ubuntu-slim
26
+ steps:
27
+ - uses: actions/checkout@v6
28
+ - uses: actions/setup-python@v6
29
+ with:
30
+ python-version: "3.14"
31
+ - run: |
32
+ python -m pip install --upgrade pip
33
+ python -m pip install . --group=docs
34
35
+ sphinx-build --builder html docs/source/ docs/build/html
36
+
37
deploy:
38
environment:
39
name: github-pages
@@ -33,7 +46,7 @@ jobs:
46
with:
47
python-version: "3.14"
48
- run: |
- python -m python -m pip install --upgrade pip
49
50
python -m pip install . --group=docs
51
52
# TODO: This gets included in docs/conf.py
0 commit comments