redict/.circleci/config.yml

22 lines
359 B
YAML
Raw Normal View History

2019-03-15 21:09:59 +02:00
version: 2
jobs:
build:
docker:
- image: circleci/buildpack-deps
steps:
- checkout
- run:
2019-03-15 21:30:09 +02:00
name: Install dependency
2019-03-15 21:09:59 +02:00
command: sudo apt-get install -y tcl
- run:
name: Build
command: make
- run:
name: Test
command: make test
workflows:
version: 2
workflow:
jobs:
- build