moq/.travis.yml
Roman Levin 5bdba044b9
Test on supported versions of Go
Golint won't even install currently.

Also change the `go get` command to use `golang.org/x/lint/golint`.
2018-11-14 14:33:29 +01:00

20 lines
204 B
YAML

language: go
sudo: false
go:
- 1.9.x
- 1.10.x
- 1.11.x
- tip
before_install:
- go get golang.org/x/lint/golint
before_script:
- go vet ./...
- golint ./...
script:
- go test -v ./...