1
Fork 0

Add CI job to lint python script

This commit is contained in:
Jake Howard 2018-03-27 13:26:33 +01:00
parent e2c6943e89
commit 7e84f101b3
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 14 additions and 0 deletions

14
.circleci/config.yml Normal file
View File

@ -0,0 +1,14 @@
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6
working_directory: ~/tex-template
steps:
- checkout
- run:
name: Install Dependencies
command: sudo pip install flake8
- run:
name: Lint
command: flake8 build.py --ignore=E128,E501