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