mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
18 lines
222 B
YAML
18 lines
222 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.12.x
|
||
|
- 1.13.x
|
||
|
- gotip
|
||
|
|
||
|
env:
|
||
|
- GO111MODULE=on
|
||
|
|
||
|
install:
|
||
|
- go get -v ./...
|
||
|
- go build ./...
|
||
|
- go get github.com/onsi/ginkgo
|
||
|
- go install github.com/onsi/ginkgo/ginkgo
|
||
|
|
||
|
script: make test
|