mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-22 03:30:04 -05:00
16 lines
347 B
YAML
16 lines
347 B
YAML
language: go
|
|
|
|
os:
|
|
- linux
|
|
|
|
go:
|
|
- 1.8.x
|
|
- master
|
|
|
|
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
|