redict/.circleci/config.yml
2019-03-15 21:30:09 +02:00

22 lines
359 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/buildpack-deps
steps:
- checkout
- run:
name: Install dependency
command: sudo apt-get install -y tcl
- run:
name: Build
command: make
- run:
name: Test
command: make test
workflows:
version: 2
workflow:
jobs:
- build