We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f188b8 commit 20f65d0Copy full SHA for 20f65d0
2 files changed
.circleci/config.yml
@@ -0,0 +1,36 @@
1
+version: 2.1
2
+orbs:
3
+ python: circleci/python@2.1.1
4
+
5
+jobs:
6
+ test:
7
+ parameters:
8
+ version:
9
+ default: "3.11"
10
+ description: Python version to install
11
+ type: string
12
+ docker:
13
+ - image: cimg/python:<<parameters.version>>
14
+ resource_class: large
15
+ steps:
16
+ - checkout
17
+ - run: python --version
18
+ - run:
19
+ name: Install
20
+ command: pip install .[dev]
21
22
+ name: Tests
23
+ command: tox
24
25
+workflows:
26
27
+ jobs:
28
+ - test:
29
+ matrix:
30
31
32
+ - "3.7"
33
+ - "3.8"
34
+ - "3.9"
35
+ - "3.10"
36
+ - "3.11"
.travis.yml
0 commit comments