summaryrefslogtreecommitdiff
path: root/.circleci/config.yml
blob: bad883df5646063fb4834455ef091cbbca7feab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
version: 2
jobs:
  build:
    docker:
      - image: golang:1.9
    working_directory: /go/src/github.com/vektah/goparsify
    steps:
      - checkout
      - run: go get -u github.com/golang/dep/cmd/dep github.com/alecthomas/gometalinter && gometalinter --install
      - run: dep ensure --vendor-only
      - run: go vet ./...
      - run: go test -v ./...
      - run: gometalinter . --disable gocyclo