From 0ac2c4ca80c2c0fd94b7eae688a2a854ea085f1d Mon Sep 17 00:00:00 2001 From: Kevin Hallock Date: Tue, 12 Mar 2019 11:56:15 -0600 Subject: [PATCH] Added pycodestyle check to CircleCI config --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3887583..70f7638 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,6 +4,20 @@ # version: 2 jobs: + pep8: + docker: + - image: circleci/python:3.6.1 + + working_directory: ~/repo + + steps: + - checkout + - run: + name: run pycodestyle + command: | + - pip install pycodestyle + - pycodestyle src test + build: docker: # specify the version you desire here