ftp/.travis.yml

15 lines
276 B
YAML
Raw Normal View History

2015-08-18 19:34:22 +02:00
language: go
sudo: required
2019-04-10 20:20:50 +02:00
dist: xenial
2015-08-18 19:34:22 +02:00
go:
2018-10-10 20:53:51 +02:00
- 1.11.x
- 1.12.x
2019-10-14 21:14:40 +02:00
- 1.13.x
2015-08-18 19:34:22 +02:00
before_install:
2015-12-28 12:33:00 +01:00
- sudo sysctl net.ipv6.conf.lo.disable_ipv6=0
- go get github.com/mattn/goveralls
2019-10-19 14:58:47 +02:00
- go get golang.org/x/lint/golint
script:
- goveralls -v
2018-01-04 13:52:50 +01:00
- golint -set_exit_status $(go list ./...)