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 eedd7ae commit bcca7e5Copy full SHA for bcca7e5
.github/workflows/deploy-book.yml
@@ -75,7 +75,7 @@ jobs:
75
pip install -r requirements.txt
76
77
- name: Build Jupyter Book
78
- run: jupyter-book build .
+ run: make docs
79
80
- name: Deploy to GitHub Pages
81
if: ${{ (github.ref == 'refs/heads/master') && startsWith(matrix.os, 'ubuntu') }}
Makefile
@@ -0,0 +1,13 @@
1
+BUILD_DIR = ./_build
2
+SRC_DIR = .
3
+
4
+docs:
5
+ jupyter-book build .
6
7
+docs-strict:
8
+ jupyter-book build --warningiserror --nitpick --keep-going .
9
10
+.PHONY: clean
11
12
+clean:
13
+ jupyter-book clean .
0 commit comments