moq/.travis.yml
Pedram Hajesmaeeli 5e2b3bdd91 Fix moq for go 1.13 and avoid creating empty directory (#105)
* Fix moq for go 1.13 and avoid creating empty directory

This fixes #103 and also fixes #102

* Update .travis.yml
2019-11-03 07:46:59 +00:00

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 ./...