14 lines
397 B
YAML
14 lines
397 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: theorangeone/docker-pandoc:alpine
|
|
working_directory: ~/tex-template
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Test build
|
|
command: bash build.sh test/main.md --verbose
|
|
- store_artifacts:
|
|
path: output.pdf
|
|
destination: output.pdf
|