Skip to content

Commit 78620c6

Browse files
committed
CI: add circle
1 parent 3bed939 commit 78620c6

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2.1
2+
3+
orbs:
4+
python: circleci/[email protected]
5+
6+
jobs:
7+
build_docs:
8+
executor: python/default
9+
steps:
10+
- checkout
11+
- python/install-deps
12+
- run:
13+
name: Build cheatsheets and docs
14+
command: make all
15+
- persist_to_workspace:
16+
root: docs/_build/html
17+
paths: .
18+
- store_artifacts:
19+
path: docs/_build/html/
20+
21+
workflows:
22+
main:
23+
jobs:
24+
- build_docs

0 commit comments

Comments
 (0)