Skip to content

Commit 607b6ca

Browse files
committed
Add .circleci/config.yml
1 parent 751b0d6 commit 607b6ca

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
- run:
17+
command: flake8 --ignore=E501
18+
name: Lint
19+
20+
workflows:
21+
main:
22+
jobs:
23+
- build-and-test

0 commit comments

Comments
 (0)