Browse Source

Added pycodestyle check to CircleCI config

lon0
Kevin Hallock 6 years ago
parent
commit
0ac2c4ca80
  1. 14
      .circleci/config.yml

14
.circleci/config.yml

@ -4,6 +4,20 @@
# #
version: 2 version: 2
jobs: 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: build:
docker: docker:
# specify the version you desire here # specify the version you desire here

Loading…
Cancel
Save