mirror of
https://github.com/btcsuite/btcd.git
synced 2025-03-12 19:02:12 +01:00
10 lines
284 B
YAML
10 lines
284 B
YAML
language: go
|
|
go:
|
|
- release
|
|
- tip
|
|
install: go get -d -t -v ./...
|
|
script: go test -v -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
|