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 5781303 commit d351274Copy full SHA for d351274
.circleci/config.yml
@@ -2,7 +2,7 @@
2
#
3
# Check https://circleci.com/docs/2.0/language-python/ for more details
4
5
-version: 2
+version: 2.1
6
jobs:
7
build:
8
docker:
@@ -18,6 +18,14 @@ jobs:
18
name: Validate roles JSON file
19
command: |
20
python validate_roles.py
21
+ - run:
22
+ name: Install sphinx deps
23
+ command: |
24
+ python -m pip install -r requirements.txt
25
26
+ name: Build sphinx
27
28
+ sphinx-build --color -W --keep-going -b html . _build/html
29
- store_artifacts:
- path: /root/project
30
+ path: /root/project/_build/html
31
destination: html
0 commit comments