goparsify/.circleci/config.yml
2017-08-09 21:19:41 +10:00

14 lines
405 B
YAML

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