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 a6cf338 commit 10c792fCopy full SHA for 10c792f
.circleci/config.yml
@@ -0,0 +1,28 @@
1
+version: 2.1
2
+
3
+orbs:
4
+ python: circleci/python@0.2.1
5
6
+jobs:
7
+ build-and-test:
8
+ executor: python/default
9
+ steps:
10
+ - checkout
11
+ - python/load-cache
12
+ - python/install-deps
13
+ - run:
14
+ name: Install CI dependencies
15
+ command: pip3 install tox twine
16
+ - python/save-cache
17
18
+ command: flake8
19
+ name: Flake8 / linting
20
21
+ command: tox
22
+ name: Run package tests across all python variants
23
24
+workflows:
25
+ main:
26
+ jobs:
27
+ - build-and-test
28
0 commit comments