16 lines
365 B
YAML
16 lines
365 B
YAML
language: go
|
|
go:
|
|
- stable
|
|
- master
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go test -v -covermode=count -coverprofile=coverage.out
|
|
after_success:
|
|
- $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- montana@montanaflynn.me
|
|
on_success: change
|
|
on_failure: always
|