mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-22 03:30:04 -05:00
21 lines
391 B
YAML
21 lines
391 B
YAML
language: go
|
|
|
|
os:
|
|
- linux
|
|
|
|
go:
|
|
- 1.9.x
|
|
- 1.12.x
|
|
- master
|
|
|
|
before_install:
|
|
# Fetch/build coverage reporting tools
|
|
- go get github.com/mattn/goveralls
|
|
- go install github.com/mattn/goveralls
|
|
|
|
script:
|
|
- go test -v -covermode=count -coverprofile=coverage.out
|
|
|
|
after_script:
|
|
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN
|