forked from LaconicNetwork/kompose
33 lines
645 B
YAML
33 lines
645 B
YAML
# we need trusty because test-cmd depends on jq version >= 1.5
|
|
dist : trusty
|
|
sudo: required
|
|
|
|
|
|
language: go
|
|
|
|
# make this also work for forks
|
|
go_import_path: github.com/kubernetes-incubator/kompose
|
|
|
|
|
|
go:
|
|
- 1.6
|
|
- 1.7
|
|
- 1.8
|
|
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
- go get github.com/modocache/gover
|
|
- go get github.com/Masterminds/glide
|
|
- go get github.com/sgotti/glide-vc
|
|
- go get github.com/golang/lint/golint
|
|
|
|
|
|
install:
|
|
- true
|
|
|
|
script:
|
|
- make test
|
|
# gover collects all .coverprofile files and saves it to one file gover.coverprofile
|
|
- gover
|
|
- goveralls -coverprofile=gover.coverprofile -service=travis-ci
|