Matthias Andreas Benkard | 832a54e | 2019-01-29 09:27:38 +0100 | [diff] [blame^] | 1 | language: go |
2 | go: | ||||
3 | - 1.6.x | ||||
4 | - 1.7.x | ||||
5 | - 1.8.x | ||||
6 | - 1.9.x | ||||
7 | - 1.10.x | ||||
8 | |||||
9 | install: | ||||
10 | - go get -v -t ./... | ||||
11 | - go get golang.org/x/tools/cmd/cover | ||||
12 | - go get github.com/onsi/gomega | ||||
13 | - go install github.com/onsi/ginkgo/ginkgo | ||||
14 | - export PATH=$PATH:$HOME/gopath/bin | ||||
15 | |||||
16 | script: $HOME/gopath/bin/ginkgo -r --randomizeAllSpecs --randomizeSuites --race --trace && go vet |