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 943b8a1 commit 3b2ba4fCopy full SHA for 3b2ba4f
.circleci/config.yml
@@ -0,0 +1,37 @@
1
+version: 2
2
+jobs:
3
+ build_docs:
4
+ docker:
5
+ - image: circleci/python:3.6-stretch
6
+ steps:
7
+ # Get our data and merge with upstream
8
+ - run: sudo apt-get update
9
+ - checkout
10
+
11
+ - restore_cache:
12
+ keys:
13
+ - cache-pip
14
15
+ - run: |
16
+ pip install jupyter-book
17
+ - save_cache:
18
+ key: cache-pip
19
+ paths:
20
+ - ~/.cache/pip
21
22
+ # Build the docs
23
+ - run:
24
+ name: Build docs to store
25
+ command: |
26
+ jb build .
27
28
+ - store_artifacts:
29
+ path: _build/html/
30
+ destination: html
31
32
33
+workflows:
34
+ version: 2
35
+ default:
36
+ jobs:
37
+ - build_docs
0 commit comments