blob: b454d643cbc411847977d5fe02fde09ebc993f0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
|