Merge pull request #31 from emojisum/travis

travis: cleanup and work-around golint
This commit is contained in:
Vincent Batts 2018-11-15 15:39:07 -05:00 committed by GitHub
commit 31734a1a0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 .