mirror of
https://github.com/rclone/rclone.git
synced 2024-11-27 19:04:26 +01:00
6427029c4e
* Update all dependencies * Remove all `[[constraint]]` from Gopkg.toml * Add in the minimum number of `[[override]]` to build * Remove go get of github.com/inconshreveable/mousetrap as it is vendored * Update docs with new policy on constraints
16 lines
201 B
YAML
16 lines
201 B
YAML
language: go
|
|
|
|
sudo: false
|
|
|
|
go:
|
|
- 1.7
|
|
- 1.8
|
|
- 1.9
|
|
- tip
|
|
|
|
script:
|
|
- ./.travis.gogenerate.sh
|
|
- ./.travis.gofmt.sh
|
|
- ./.travis.govet.sh
|
|
- go test -v -race $(go list ./... | grep -v vendor)
|