1language: go
2
3go:
4 - 1.7
5
6script:
7  - go get golang.org/x/tools/cmd/cover
8  - go get github.com/mattn/goveralls
9  - go test -v -covermode=count -coverprofile=profile.out
10  - go vet
11  - goveralls -service drone.io -coverprofile=profile.out -repotoken $COVERALLS
12
13notifications:
14  email:
15    - marty.schoch@gmail.com
16