Skip to content

Commit 10c792f

Browse files
committed
Adding CircleCI support.
1 parent a6cf338 commit 10c792f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.circleci/config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
- run:
18+
command: flake8
19+
name: Flake8 / linting
20+
- run:
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

Comments
 (0)