mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 17:44:57 +01:00
7f2e9d9a6b
Google cloud package requires go v1.5 to compile, so we need to require the same for rclone. Fixes #408
24 lines
312 B
YAML
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 ./...
|