aboutsummaryrefslogblamecommitdiffstats
path: root/.circleci/config.yml
blob: 390f5ba1469e212039c0470cd29932c0eeafc3ca (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                               
version: 2
jobs:
  build:
    docker:
      - image: circleci/golang:1.10

    working_directory: /go/src/github.com/dexon-foundation/dexon-consensus-core

    environment:

    steps:
      - checkout
      - run: bin/install_tools.sh
      - run: dep ensure
      - run: make lint
      - run: make vet
      - run: make test
      - run: make