mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
24 lines
333 B
YAML
24 lines
333 B
YAML
language: go
|
|
sudo: false
|
|
osx_image: xcode7.3
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
go:
|
|
- 1.5.4
|
|
- 1.6.2
|
|
- 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 ./...
|