fibonacci_pipeline/.travis.yml

10 lines
346 B
YAML
Raw Normal View History

2024-10-18 12:26:36 +00:00
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"