.travis.yml 363 B

123456789101112131415161718192021222324
  1. dist: xenial
  2. sudo: false
  3. language: go
  4. services:
  5. - redis-server
  6. go:
  7. - 1.11.x
  8. - 1.12.x
  9. - 1.13.x
  10. - tip
  11. matrix:
  12. allow_failures:
  13. - go: tip
  14. env:
  15. - GO111MODULE=on
  16. go_import_path: github.com/go-redis/redis
  17. before_install:
  18. - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.21.0