.travis.yml 228 B

1234567891011121314151617181920
  1. sudo: false
  2. language: go
  3. services:
  4. - redis-server
  5. go:
  6. - 1.9.x
  7. - 1.10.x
  8. - 1.11.x
  9. - 1.12.x
  10. - tip
  11. matrix:
  12. allow_failures:
  13. - go: tip
  14. install:
  15. - go get github.com/onsi/ginkgo
  16. - go get github.com/onsi/gomega