mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 20:04:52 +01:00
23 lines
423 B
YAML
23 lines
423 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- 1.10.x
|
|
|
|
install: go get -u golang.org/x/oauth2
|
|
|
|
script:
|
|
- set -e
|
|
- GOOS=linux GOARCH=amd64 go install ./dropbox/...
|
|
- GOOS=darwin GOARCH=amd64 go install ./dropbox/...
|
|
- GOOS=windows GOARCH=amd64 go install ./dropbox/...
|
|
- set +e
|
|
|
|
jobs:
|
|
include:
|
|
- stage: run tests
|
|
go: 1.9.x
|
|
install: go get -u golang.org/x/oauth2
|
|
script: go test ./dropbox/...
|