Skip to content

Commit

Permalink
Add auto-building docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Hallett committed Jun 10, 2019
1 parent 3bbd78f commit 73553a6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
jobs:
build_docs:
docker:
- image: circleci/python:3.7
steps:
- checkout
- run:
name: Build Dependencies
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
- run:
name: Build and publish documentation
command: |
. venv/bin/activate
mkdocs gh-deploy
workflows:
version: 2
build:
jobs:
- build_docs

0 comments on commit 73553a6

Please sign in to comment.