1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
tex-template-builder/.circleci/config.yml
2018-03-27 13:32:14 +01:00

15 lines
382 B
YAML

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