This commit is contained in:
Guy Korland 2019-03-15 21:09:59 +02:00
parent e216ceaf0e
commit a2ac5c3840

21
.circleci/config.yml Normal file
View File

@ -0,0 +1,21 @@
version: 2
jobs:
build:
docker:
- image: circleci/buildpack-deps
steps:
- checkout
- run:
name: dep
command: sudo apt-get install -y tcl
- run:
name: Build
command: make
- run:
name: Test
command: make test
workflows:
version: 2
workflow:
jobs:
- build