mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
16 lines
366 B
YAML
16 lines
366 B
YAML
language: go
|
|
go:
|
|
- 1.6
|
|
- 1.5
|
|
- 1.4
|
|
- 1.3
|
|
|
|
install:
|
|
- go get github.com/stretchr/testify/assert
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
|
|
script:
|
|
- go test -v -covermode=count -coverprofile=coverage.out
|
|
- $(go env GOPATH | awk 'BEGIN{FS=":"} {print $1}')/bin/goveralls -coverprofile=coverage.out -service=travis-ci
|
|
|