2020-02-17 12:15:57 +00:00
|
|
|
language: go
|
|
|
|
go:
|
|
|
|
- 1.12.x
|
|
|
|
- 1.13.x
|
|
|
|
- tip
|
|
|
|
|
2020-04-14 07:04:33 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $GOPATH/pkg/mod
|
|
|
|
|
2020-02-17 12:15:57 +00:00
|
|
|
# allow internal package imports, necessary for forked repositories
|
|
|
|
go_import_path: github.com/onsi/ginkgo
|
|
|
|
|
|
|
|
install:
|
2020-04-14 07:04:33 +00:00
|
|
|
- GO111MODULE="off" go get -v -t ./...
|
|
|
|
- GO111MODULE="off" go get golang.org/x/tools/cmd/cover
|
|
|
|
- GO111MODULE="off" go get github.com/onsi/gomega
|
|
|
|
- GO111MODULE="off" go install github.com/onsi/ginkgo/ginkgo
|
2020-02-17 12:15:57 +00:00
|
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
|
|
|
2020-04-14 07:04:33 +00:00
|
|
|
script:
|
|
|
|
- GO111MODULE="on" go mod tidy
|
|
|
|
- diff -u <(echo -n) <(git diff go.mod)
|
|
|
|
- diff -u <(echo -n) <(git diff go.sum)
|
|
|
|
- $HOME/gopath/bin/ginkgo -r --randomizeAllSpecs --randomizeSuites --race --trace && go vet
|