mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-20 18:01:34 +01:00
13 lines
319 B
YAML
13 lines
319 B
YAML
language: go
|
|
sudo: false
|
|
go:
|
|
- 1.x
|
|
- 1.8.x
|
|
- tip
|
|
before_install:
|
|
- go get github.com/axw/gocov/gocov
|
|
- go get github.com/mattn/goveralls
|
|
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
|
|
- go get github.com/sergi/go-diff/diffmatchpatch
|
|
script: ./travisBuild.sh
|