go-libvirt-plain/.travis.yml
Michael Koppmann ef5716f8d6 Replaced scripts/golint.sh with built-in golint flag. (#17)
* Replaced scripts/golint.sh with built-in golint flag.

Fixes issue #16.

Should I delete the scripts/golint.sh?

* Added @mkoppmann to the AUTHORS file.

* Delete golint.sh as it is not needed anymore
2016-10-04 20:26:25 -04:00

14 lines
246 B
YAML

language: go
go:
- 1.7
before_install:
- go get github.com/golang/lint/golint
before_script:
- go get -d ./...
script:
- ./scripts/licensecheck.sh
- go build ./...
- golint -set_exit_status ./...
- go vet ./...
- go test -v ./...