Skip to content

Commit 73553a6

Browse files
author
Paul Hallett
committed
Add auto-building docs
1 parent 3bbd78f commit 73553a6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
jobs:
3+
build_docs:
4+
docker:
5+
- image: circleci/python:3.7
6+
steps:
7+
- checkout
8+
- run:
9+
name: Build Dependencies
10+
command: |
11+
python3 -m venv venv
12+
. venv/bin/activate
13+
pip install -r requirements.txt
14+
- run:
15+
name: Build and publish documentation
16+
command: |
17+
. venv/bin/activate
18+
mkdocs gh-deploy
19+
workflows:
20+
version: 2
21+
build:
22+
jobs:
23+
- build_docs

0 commit comments

Comments
 (0)