.travis.yml 445 B

123456789101112131415161718
  1. language: go
  2. go:
  3. - 1.12.x
  4. - 1.13.x
  5. - tip
  6. # allow internal package imports, necessary for forked repositories
  7. go_import_path: github.com/onsi/ginkgo
  8. install:
  9. - go get -v -t ./...
  10. - go get golang.org/x/tools/cmd/cover
  11. - go get github.com/onsi/gomega
  12. - go install github.com/onsi/ginkgo/ginkgo
  13. - export PATH=$PATH:$HOME/gopath/bin
  14. script: $HOME/gopath/bin/ginkgo -r --randomizeAllSpecs --randomizeSuites --race --trace && go vet