ofxgo/.travis.yml

16 lines
347 B
YAML
Raw Normal View History

2017-04-08 11:11:01 -04:00
language: go
2017-04-08 11:22:45 -04:00
os:
- linux
2017-04-08 11:11:01 -04:00
go:
- 1.8.x
- master
2017-04-08 11:22:45 -04:00
script:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
- go install github.com/mattn/goveralls
- go test -v -covermode=count -coverprofile=coverage.out
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN