2015-03-13 00:17:56 +02:00
|
|
|
language: go
|
2015-03-16 23:38:40 +02:00
|
|
|
go:
|
2016-01-29 19:16:05 +02:00
|
|
|
- 1.5
|
2016-02-19 00:04:28 +02:00
|
|
|
- 1.6
|
2015-03-17 06:25:25 +02:00
|
|
|
- tip
|
2015-04-05 23:44:32 +02:00
|
|
|
before_install:
|
2015-04-22 07:15:57 +02:00
|
|
|
- go get github.com/modocache/gover
|
2015-03-17 06:25:25 +02:00
|
|
|
- go get github.com/mattn/goveralls
|
|
|
|
- go get golang.org/x/tools/cmd/cover
|
2015-03-16 23:38:40 +02:00
|
|
|
script:
|
2015-04-22 07:15:57 +02:00
|
|
|
- go test -coverprofile=echo.coverprofile
|
|
|
|
- go test -coverprofile=middleware.coverprofile ./middleware
|
|
|
|
- $HOME/gopath/bin/gover
|
|
|
|
- $HOME/gopath/bin/goveralls -coverprofile=gover.coverprofile -service=travis-ci
|
2016-02-20 18:11:02 +02:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- go: tip
|