ftp/.travis.yml

18 lines
377 B
YAML
Raw Normal View History

2015-08-18 19:34:22 +02:00
language: go
dist: trusty
sudo: required
2015-08-18 19:34:22 +02:00
go:
2018-04-04 14:35:14 +02:00
- 1.9.x
- 1.10.x
env:
- FTP_SERVER=vsftpd
- FTP_SERVER=proftpd
2015-08-18 19:34:22 +02:00
before_install:
- sudo $TRAVIS_BUILD_DIR/.travis/prepare.sh "$FTP_SERVER"
2015-12-28 12:33:00 +01:00
- sudo sysctl net.ipv6.conf.lo.disable_ipv6=0
- go get github.com/mattn/goveralls
2018-01-04 13:52:50 +01:00
- go get github.com/golang/lint/golint
script:
- goveralls -v
2018-01-04 13:52:50 +01:00
- golint -set_exit_status $(go list ./...)