ingress-nginx-helm/vendor/gopkg.in/gavv/httpexpect.v2/.travis.yml
Manuel Alejandro de Brito Fontes 307bf76454 Update go dependencies
2020-02-19 19:42:50 -03:00

17 lines
420 B
YAML

language: go
sudo: false
go:
- 1.12.x
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
- go get github.com/golangci/golangci-lint/cmd/golangci-lint
script:
- go get -v -t . ./_examples
- go test -coverprofile profile.cov .
- go test ./_examples
- ${GOPATH}/bin/golangci-lint run ./...
- ${GOPATH}/bin/goveralls -coverprofile profile.cov -service=travis-ci