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 28820fc commit 428b38bCopy full SHA for 428b38b
.circleci/config.yml
@@ -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
13
+ name: Test
14
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
25
26
+ - image: circleci/python:3.7
27
28
+ "test-py38":
29
30
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