rclone/.travis.yml

24 lines
312 B
YAML
Raw Normal View History

2014-06-26 17:23:54 +00:00
language: go
sudo: false
2014-06-26 17:23:54 +00:00
os:
- linux
# - osx
2014-06-26 17:23:54 +00:00
go:
2016-01-23 17:27:00 +00:00
- 1.5.3
- 1.6
- tip
install:
2016-02-15 17:31:11 +00:00
- go get -t ./...
- go get -u github.com/kisielk/errcheck
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/lint/golint
2014-06-26 17:23:54 +00:00
script:
- make check
- go test ./...
- go test -cpu=2 -race ./...