Files
Go-tool/vendor/github.com/ahmetb/go-linq/.travis.yml
T

20 lines
383 B
YAML

sudo: false
language: go
go:
- 1.5
- 1.7
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get -u github.com/golang/lint/golint
script:
- go vet -x ./...
- golint ./...
- go test -v ./...
- go test -covermode=count -coverprofile=profile.cov
after_script:
- goveralls -coverprofile=profile.cov -service=travis-ci