File: .travis.yml

package info (click to toggle)
golang-github-dropbox-dropbox-sdk-go-unofficial 5.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,824 kB
  • sloc: python: 529; sh: 19; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 436 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: go

go:
  - "1.9.x"
  - "1.10.x"
  - "1.11.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.11.x"
      install: go get -u golang.org/x/oauth2
      script: go test -v ./dropbox/...