1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-29 21:04:23 +02:00
2018-03-19 15:51:38 +00:00

24 lines
432 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
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/...