5e2b3bdd91
* Fix moq for go 1.13 and avoid creating empty directory This fixes #103 and also fixes #102 * Update .travis.yml
20 lines
205 B
YAML
20 lines
205 B
YAML
language: go
|
|
|
|
sudo: false
|
|
|
|
go:
|
|
- 1.11.x
|
|
- 1.12.x
|
|
- 1.13.x
|
|
- tip
|
|
|
|
before_install:
|
|
- go get golang.org/x/lint/golint
|
|
|
|
before_script:
|
|
- go vet ./...
|
|
- golint ./...
|
|
|
|
script:
|
|
- go test -v ./...
|