Skip to content

Commit

Permalink
circle preview
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf committed Jun 13, 2020
1 parent 943b8a1 commit a69cc40
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
version: 2
jobs:
build_docs:
docker:
- image: circleci/python:3.6-stretch
steps:
# Get our data and merge with upstream
- run: sudo apt-get update
- checkout

- restore_cache:
keys:
- cache-pip

- run: |
pip install jupyter-book
- save_cache:
key: cache-pip
paths:
- ~/.cache/pip

# Build the docs
- run:
name: Build docs to store
command: |
jb build .
- store_artifacts:
path: _build/html/
destination: html


workflows:
version: 2
default:
jobs:
- build_docs

0 comments on commit a69cc40

Please sign in to comment.