Skip to content

Commit 9132e46

Browse files
committed
Update ci-book.yml
1 parent aac86e8 commit 9132e46

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci-book.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,27 @@
11
# (paste the YAML above)
2+
name: ci-book
3+
4+
on:
5+
pull_request:
6+
push:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: "3.11"
18+
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install -r requirements.txt
23+
24+
- name: Verify Jupyter Book builds (no deploy)
25+
run: |
26+
jupyter-book clean . --all
27+
jupyter-book build . --all

0 commit comments

Comments
 (0)