travis: cleanup and work-around golint

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2018-11-15 15:33:31 -05:00
parent 2e152064f3
commit 17e8e43f59
Signed by: vbatts
GPG Key ID: 10937E57733F1362
1 changed files with 22 additions and 9 deletions

View File

@ -1,24 +1,37 @@
language: go
go_import_path: github.com/emojisum/emojisum
go:
- 1.x
- 1.11.x
- 1.10.x
- 1.9.x
- 1.8.x
- 1.7.x
- "1.x"
- "1.11.x"
- "1.10.x"
- "1.9.x"
- "1.8.x"
- "1.7.x"
env:
matrix:
sudo: false
install: true
notifications:
email:
on_success: change
on_failure: always
before_install:
- git config --global url."https://".insteadOf git://
- go get -u -v golang.org/x/lint/golint
- mkdir -p $GOPATH/src/github.com/emojisum && ln -sf $(pwd) $GOPATH/src/github.com/emojisum/emojisum
- go get -d ./...
- if [[ "$(go version |awk '{ print $3 }')" =~ ^go1\.11\. ]] ; then go get -u golang.org/x/lint/golint ; fi
install: true
script:
- if [[ "$(go version |awk '{ print $3 }')" =~ ^go1\.11\. ]] ; then golint -set_exit_status ./... ; fi
- go vet ./...
- golint -set_exit_status ./...
- go test -v ./...
- go build .