mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
389 B
14 lines
389 B
language: go
|
|
go:
|
|
- 1.5.4
|
|
- 1.6.3
|
|
- 1.7
|
|
install:
|
|
- go get -v golang.org/x/tools/cmd/cover
|
|
script:
|
|
- go test -v -tags=safe ./spew
|
|
- go test -v -tags=testcgo ./spew -covermode=count -coverprofile=profile.cov
|
|
after_success:
|
|
- go get -v github.com/mattn/goveralls
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
- goveralls -coverprofile=profile.cov -service=travis-ci
|
|
|