123456789101112131415161718 |
- 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
|