diff options
author | Wim <wim@42.be> | 2018-11-08 00:17:38 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2018-11-08 00:17:38 +0100 |
commit | aa59bb1a416b9bbdfc09c9d1dc23d9d97dbe8d50 (patch) | |
tree | 26478d488b29bc61d06c94045c5017e43f0bbbf4 /.travis.yml | |
parent | d2a1dc792f9a2bb147afc6e8fde2c9f723f29cf1 (diff) | |
download | matterbridge-msglm-aa59bb1a416b9bbdfc09c9d1dc23d9d97dbe8d50.tar.gz matterbridge-msglm-aa59bb1a416b9bbdfc09c9d1dc23d9d97dbe8d50.tar.bz2 matterbridge-msglm-aa59bb1a416b9bbdfc09c9d1dc23d9d97dbe8d50.zip |
Enable go vet
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 32aefb5e..17143fa4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,7 @@ before_script: script: - test -z "$(go fmt ./...)" # Fail if a .go file hasn't been formatted with gofmt - go test -v -race $PKGS # Run all the tests with the race detector enabled - # - go vet $PKGS # go vet is the official Go static analyzer + - go vet $PKGS # go vet is the official Go static analyzer - megacheck $PKGS # "go vet on steroids" + linter - /bin/bash ci/bintray.sh #- golint -set_exit_status $PKGS # one last linter |