You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 599B

1234567891011121314151617181920212223242526272829303132
  1. sudo: false
  2. language: go
  3. go:
  4. - "1.4.x"
  5. - "1.5.x"
  6. - "1.6.x"
  7. - "1.7.x"
  8. - "1.8.x"
  9. - "1.9.x"
  10. - "1.10.x"
  11. - "1.11.x"
  12. - "1.12.x"
  13. - tip
  14. git:
  15. depth: 1
  16. matrix:
  17. fast_finish: true
  18. allow_failures:
  19. - go: tip
  20. go_import_path: gopkg.in/ldap.v3
  21. install:
  22. - go get gopkg.in/asn1-ber.v1
  23. - go get code.google.com/p/go.tools/cmd/cover || go get golang.org/x/tools/cmd/cover
  24. - go get github.com/golang/lint/golint || go get golang.org/x/lint/golint || true
  25. - go build -v ./...
  26. script:
  27. - make test
  28. - make fmt
  29. - make vet
  30. - make lint