Skip to content

Commit 428b38b

Browse files
committed
Add CircleCI config
1 parent 28820fc commit 428b38b

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.circleci/config.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
version: 2
2+
3+
shared: &shared
4+
working_directory: ~/circleci-codetiming
5+
steps:
6+
- checkout
7+
- run:
8+
name: Install
9+
command: |
10+
python -m pip install flit --user
11+
python -m flit install --deps=develop
12+
- run:
13+
name: Test
14+
command: |
15+
python -m tox --recreate
16+
17+
jobs:
18+
"test-py36":
19+
<<: *shared
20+
docker:
21+
- image: circleci/python:3.6
22+
23+
"test-py37":
24+
<<: *shared
25+
docker:
26+
- image: circleci/python:3.7
27+
28+
"test-py38":
29+
<<: *shared
30+
docker:
31+
- image: circleci/python:3.8-rc
32+
33+
34+
workflows:
35+
version: 2
36+
37+
development-workflow:
38+
jobs:
39+
- "test-py36"
40+
- "test-py37"
41+
- "test-py38"

0 commit comments

Comments
 (0)