ci: move formatting check to pre-commit + GitHub

This commit is contained in:
Henry Schreiner
2020-08-14 15:56:05 -04:00
parent 6d6d277ea5
commit 17c83ad78b
2 changed files with 8 additions and 17 deletions
-17
View File
@@ -1,22 +1,6 @@
version: 2
jobs:
flake8-mypy:
docker:
- image: circleci/python:3.6
steps:
- checkout
- run:
name: Install flake8 & mypy
command: sudo python -m pip install flake8 mypy
- run:
name: flake8
command: flake8
- run:
name: mypy
command: mypy
osx-python3.6:
macos:
xcode: "9.4.1"
@@ -54,6 +38,5 @@ workflows:
version: 2
all-tests:
jobs:
- flake8-mypy
- osx-python3.6
- linux-python3.6