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 cf5aa66 commit 58d0f47Copy full SHA for 58d0f47
.circleci/config.yml
@@ -0,0 +1,25 @@
1
+version: 2
2
+
3
+# Aliases to reuse
4
+_defaults: &defaults
5
+ docker:
6
+ # CircleCI maintains a library of pre-built images
7
+ # documented at https://circleci.com/docs/2.0/circleci-images/
8
+ - image: circleci/python:3.7.0
9
+ working_directory: ~/repo
10
11
+jobs:
12
+ build_page:
13
+ <<: *defaults
14
+ steps:
15
+ - attach_workspace:
16
+ at: ~/
17
18
+ - run:
19
+ name: build docs
20
+ no_output_timeout: 25m
21
+ command: |
22
+ pip install -r requirements.txt
23
+ sphinx-build -b html -WT --keep-going spec build/latest -d doctrees
24
+ - store_artifacts:
25
+ path: build/latest
0 commit comments