Updated travis file

This commit is contained in:
Eduard Urbach 2018-04-26 03:15:07 +02:00
parent a72b636d16
commit 9746b16cf1

View File

@ -1,6 +1,4 @@
language:
- go
- node_js
language: go
# Only the last two Go releases are supported by the Go team with security
# updates. Any versions older than that should be considered deprecated.
@ -12,9 +10,6 @@ go:
- 1.10.x
- master
node_js:
- "10"
# Setting this to true will skip the `go get` dependencies step.
install: true
@ -34,7 +29,7 @@ notifications:
# flunk the build and immediately stop. It's sorta like having
# set -e enabled in bash.
before_script:
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/) # All the .go files, excluding vendor/
# - GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/) # All the .go files, excluding vendor/
- go get github.com/golang/lint/golint # Linter
- go get honnef.co/go/tools/cmd/megacheck # Badass static analyzer/linter
- go get github.com/fzipp/gocyclo