mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
64dc9138e3
Signed-off-by: Vishal Rana <vr@labstack.com>
20 lines
479 B
YAML
20 lines
479 B
YAML
language: go
|
|
go:
|
|
- 1.6
|
|
- 1.7
|
|
- tip
|
|
install:
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/Masterminds/glide
|
|
- go get github.com/mattn/goveralls
|
|
- go get github.com/modocache/gover
|
|
- glide install
|
|
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
|