1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-30 08:46:41 +02:00
echo/.travis.yml
Vishal Rana 10809fad77 Fixed build
Signed-off-by: Vishal Rana <vr@labstack.com>
2017-05-11 14:55:11 -07:00

20 lines
484 B
YAML

language: go
go:
- 1.7
- 1.8
- tip
install:
- go get golang.org/x/tools/cmd/cover
- go get -u github.com/golang/dep/...
- go get github.com/mattn/goveralls
- go get github.com/modocache/gover
- dep ensure -update
script:
- go test -coverprofile=echo.coverprofile
- go test -coverprofile=middleware.coverprofile ./middleware
- gover
- goveralls -coverprofile=gover.coverprofile -service=travis-ci
matrix:
allow_failures:
- go: tip