ef5716f8d6
* 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
14 lines
246 B
YAML
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 ./...
|