1
mirror of https://github.com/rclone/rclone synced 2024-09-30 06:09:01 +02:00
rclone/.travis.yml
Nick Craig-Wood 46696865fd Ignore golint errors that can't be fixed
Stop duplicating checkers in .travis.yml - use Makefile as definitive source
2015-11-14 10:08:52 +00:00

26 lines
328 B
YAML

language: go
sudo: false
os:
- linux
# - osx
go:
- 1.3.3
- 1.4.2
- 1.5.1
# - tip
install:
- go get ./...
- go get -u github.com/kisielk/errcheck
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/lint/golint
script:
- make check
- go test -v ./...
- go test -cpu=2 -race -v ./...