Skip to content

Commit 7a28d23

Browse files
committed
ci
1 parent a490ae5 commit 7a28d23

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

.github/workflows/documentation.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,19 @@ concurrency:
2121
cancel-in-progress: false
2222

2323
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+
- run: |
35+
sphinx-build --builder html docs/source/ docs/build/html
36+
2437
deploy:
2538
environment:
2639
name: github-pages
@@ -33,7 +46,7 @@ jobs:
3346
with:
3447
python-version: "3.14"
3548
- run: |
36-
python -m python -m pip install --upgrade pip
49+
python -m pip install --upgrade pip
3750
python -m pip install . --group=docs
3851
3952
# TODO: This gets included in docs/conf.py

0 commit comments

Comments
 (0)