mirror of
https://github.com/sbrow/risk-multilang.git
synced 2025-12-30 00:47:39 -05:00
12 lines
301 B
YAML
12 lines
301 B
YAML
language: go
|
|
|
|
install:
|
|
- go get -t ./...
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
|
|
script:
|
|
- PATH="$HOME/gopath/bin:$PATH"
|
|
- go test ./... -v -covermode=count -coverprofile=cover.out
|
|
- goveralls -coverprofile cover.out -service=travis-ci -repotoken $TOKEN
|