mirror of https://github.com/gin-gonic/gin.git
15 lines
341 B
YAML
15 lines
341 B
YAML
language: go
|
|
sudo: false
|
|
go:
|
|
- 1.4
|
|
- 1.4.2
|
|
- tip
|
|
|
|
install:
|
|
go get code.google.com/p/go.tools/cmd/cover
|
|
go get github.com/mattn/goveralls
|
|
|
|
script:
|
|
go test -v -covermode=count -coverprofile=coverage.out
|
|
$HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken yFj7FrCeddvBzUaaCyG33jCLfWXeb93eA
|