5bdba044b9
Golint won't even install currently. Also change the `go get` command to use `golang.org/x/lint/golint`.
20 lines
204 B
YAML
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 ./...
|