We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac86e8 commit 9132e46Copy full SHA for 9132e46
1 file changed
.github/workflows/ci-book.yml
@@ -1 +1,27 @@
1
# (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
26
+ jupyter-book clean . --all
27
+ jupyter-book build . --all
0 commit comments