rclone/.travis.yml
Klaus Post 7f2e9d9a6b Require go v1.5 for compilation
Google cloud package requires go v1.5 to compile, so we need to require the same for rclone.

Fixes #408
2016-04-04 17:34:39 +01:00

24 lines
312 B
YAML

language: go
sudo: false
os:
- linux
# - osx
go:
- 1.5.3
- 1.6
- tip
install:
- go get -t ./...
- go get -u github.com/kisielk/errcheck
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/lint/golint
script:
- make check
- go test ./...
- go test -cpu=2 -race ./...