mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
d5a0606c33
Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
18 lines
445 B
YAML
18 lines
445 B
YAML
language: go
|
|
go:
|
|
- 1.12.x
|
|
- 1.13.x
|
|
- tip
|
|
|
|
# allow internal package imports, necessary for forked repositories
|
|
go_import_path: github.com/onsi/ginkgo
|
|
|
|
install:
|
|
- go get -v -t ./...
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/onsi/gomega
|
|
- go install github.com/onsi/ginkgo/ginkgo
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
|
|
script: $HOME/gopath/bin/ginkgo -r --randomizeAllSpecs --randomizeSuites --race --trace && go vet
|