10 lines
346 B
YAML
10 lines
346 B
YAML
|
language: go
|
||
|
go:
|
||
|
- 1.10.x
|
||
|
go_import_path: github.com/t-pwk/go-fibonacci
|
||
|
before_script:
|
||
|
- go get golang.org/x/tools/cmd/cover
|
||
|
- go get github.com/mattn/goveralls
|
||
|
script:
|
||
|
- go test -v -covermode=count -coverprofile=coverage.out ./...
|
||
|
- "$HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN"
|