mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 08:23:47 +01:00
Extend CI tests to include formatting checks.
CI tests now tests 'go vet', 'go fmt' (via goimports) and golint. Adds Travis experimental OSX support.
This commit is contained in:
parent
e4a9e27a55
commit
b85ddc4e4f
14
.travis.yml
14
.travis.yml
@ -1,12 +1,24 @@
|
||||
language: go
|
||||
sudo: false
|
||||
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
go:
|
||||
- 1.3.3
|
||||
- 1.4.2
|
||||
- 1.5
|
||||
- tip
|
||||
|
||||
install:
|
||||
- go get ./...
|
||||
- go get -u github.com/golang/lint/golint
|
||||
- go get -u golang.org/x/tools/cmd/goimports
|
||||
|
||||
script:
|
||||
- go get ./...
|
||||
- go vet ./...
|
||||
- diff <(goimports -d .) <(printf "")
|
||||
- diff <(golint ./...) <(printf "")
|
||||
- go test -v ./...
|
||||
- go test -cpu=2 -race -v ./...
|
||||
|
@ -18,6 +18,7 @@ import (
|
||||
"time"
|
||||
|
||||
"crypto/tls"
|
||||
|
||||
"github.com/Unknwon/goconfig"
|
||||
"github.com/mreiferson/go-httpclient"
|
||||
"github.com/spf13/pflag"
|
||||
|
Loading…
Reference in New Issue
Block a user