.travis.yml 499 B

1234567891011121314151617181920212223242526
  1. language: go
  2. go_import_path: github.com/pkg/sftp
  3. go:
  4. - 1.4.3
  5. - 1.5.2
  6. - 1.6.2
  7. - tip
  8. sudo: false
  9. addons:
  10. ssh_known_hosts:
  11. - bitbucket.org
  12. install:
  13. - go get -t -v ./...
  14. - ssh-keygen -t rsa -q -P "" -f /home/travis/.ssh/id_rsa
  15. script:
  16. - go test -integration -v ./...
  17. - go test -testserver -v ./...
  18. - go test -integration -testserver -v ./...
  19. - go test -race -integration -v ./...
  20. - go test -race -testserver -v ./...
  21. - go test -race -integration -testserver -v ./...