--- language: go sudo: false notifications: email: true go: - 1.8.x - tip env: global: - GO15VENDOREXPERIMENT=1 install: - go get github.com/golang/lint/golint script: - go build -v - go vet $(go list ./... | grep -v vendor) - test -z "$(golint ./... | grep -v vendor | tee /dev/stderr)" - test -z "$(gofmt -s -l . | grep -v vendor | tee /dev/stderr)" - go test $(go list ./... | grep -v vendor)