Skip to content

Commit 3b2ba4f

Browse files
committed
circle preview
1 parent 943b8a1 commit 3b2ba4f

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.circleci/config.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)