1
0
Fork 0
mirror of https://github.com/emojisum/emojisum.git synced 2025-07-05 00:48:30 +00:00

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

View file

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