Add a CircleCI job for flake8

This commit is contained in:
Nicola Soranzo
2020-02-14 15:50:06 +00:00
parent cab6ecef24
commit c15d656726
+14
View File
@@ -1,6 +1,19 @@
version: 2
jobs:
flake8:
docker:
- image: circleci/python:3.6
steps:
- checkout
- run:
name: Install flake8
command: sudo python -m pip install flake8
- run:
name: Test.
command: flake8 --exclude=.git,.venv,site .
osx-python3.6:
macos:
xcode: "9.4.1"
@@ -51,6 +64,7 @@ workflows:
version: 2
all-tests:
jobs:
- flake8
- osx-python3.6
- osx-python3.7
- linux-python3.6