We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 751b0d6 commit 607b6caCopy full SHA for 607b6ca
1 file changed
.circleci/config.yml
@@ -0,0 +1,23 @@
1
+version: 2.1
2
+
3
+orbs:
4
+ python: circleci/[email protected]
5
6
+jobs:
7
+ build-and-test:
8
+ executor: python/default
9
+ steps:
10
+ - checkout
11
+ - python/load-cache
12
+ - run:
13
+ command: pip install flake8
14
+ name: Install dependencies
15
+ - python/save-cache
16
17
+ command: flake8 --ignore=E501
18
+ name: Lint
19
20
+workflows:
21
+ main:
22
+ jobs:
23
+ - build-and-test
0 commit comments