2015-03-12 15:17:56 -07:00
|
|
|
language: go
|
2015-03-16 14:38:40 -07:00
|
|
|
go:
|
2016-08-17 11:08:40 -04:00
|
|
|
- 1.7
|
2017-02-22 15:57:12 -08:00
|
|
|
- 1.8
|
2015-03-16 21:25:25 -07:00
|
|
|
- tip
|
2016-11-17 10:33:05 -08:00
|
|
|
install:
|
2016-11-17 11:37:02 -08:00
|
|
|
- go get golang.org/x/tools/cmd/cover
|
2016-11-17 10:33:05 -08:00
|
|
|
- go get github.com/Masterminds/glide
|
2015-03-16 21:25:25 -07:00
|
|
|
- go get github.com/mattn/goveralls
|
2016-11-17 11:37:02 -08:00
|
|
|
- go get github.com/modocache/gover
|
2016-11-17 10:33:05 -08:00
|
|
|
- glide install
|
2015-03-16 14:38:40 -07:00
|
|
|
script:
|
2016-11-17 11:37:02 -08:00
|
|
|
- go test -coverprofile=echo.coverprofile
|
|
|
|
- go test -coverprofile=middleware.coverprofile ./middleware
|
|
|
|
- gover
|
|
|
|
- goveralls -coverprofile=gover.coverprofile -service=travis-ci
|
2016-02-20 08:11:02 -08:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- go: tip
|