rclone/vendor/github.com/jlaffaye/ftp/.travis.yml
Nick Craig-Wood 6427029c4e vendor: update all dependencies
* 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
2018-05-05 15:52:24 +01:00

18 lines
377 B
YAML

language: go
dist: trusty
sudo: required
go:
- 1.9.x
- 1.10.x
env:
- FTP_SERVER=vsftpd
- FTP_SERVER=proftpd
before_install:
- sudo $TRAVIS_BUILD_DIR/.travis/prepare.sh "$FTP_SERVER"
- sudo sysctl net.ipv6.conf.lo.disable_ipv6=0
- go get github.com/mattn/goveralls
- go get github.com/golang/lint/golint
script:
- goveralls -v
- golint -set_exit_status $(go list ./...)