summaryrefslogtreecommitdiff
path: root/.circleci/config.yml
blob: fe2a6ea07491bfe0839b7e8b7b759237713ca1c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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