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

15 lines
379 B
YAML

version: 2
jobs:
build:
docker:
- image: jagregory/pandoc
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