blob: 19ac7a016aab7eff22738602f77affb776a83532 [file] [log] [blame]
language: go
go:
- 1.7
- 1.8
install:
- go get -v -u github.com/golang/lint/golint
- go get -v -u github.com/mattn/goveralls
- go get -v -u github.com/stretchr/testify/...
script:
- golint -set_exit_status ./
- go vet ./
- go test -v -covermode=count -coverprofile=profile.cov ./
after_success:
- goveralls -coverprofile=profile.cov -service=travis-ci