mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 18:31:17 +08:00
18 lines
360 B
YAML
18 lines
360 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
install: go get -u golang.org/x/oauth2
|
|
before_script: go get -u github.com/mitchellh/gox
|
|
script: gox -osarch="darwin/amd64 linux/amd64 windows/amd64" ./dropbox/...
|
|
|
|
jobs:
|
|
include:
|
|
- stage: run tests
|
|
go: 1.9.x
|
|
install: go get -u golang.org/x/oauth2
|
|
script: go test ./dropbox/...
|