17 lines
495 B
YAML
17 lines
495 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: jagregory/pandoc
|
|
working_directory: ~/tex-template
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Install Dependencies
|
|
command: apt-get install -y python-flake8
|
|
- run:
|
|
name: Lint
|
|
command: flake8 build.py --ignore=E128,E501
|
|
- run:
|
|
name: Test build
|
|
command: python3 build.py test/main.md
|