ftp/.travis.yml
2019-10-14 21:14:40 +02:00

15 lines
281 B
YAML

language: go
sudo: required
dist: xenial
go:
- 1.11.x
- 1.12.x
- 1.13.x
before_install:
- 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 ./...)