From 203f24b35c66ffc71b92f2b667cdaaeb0c3031cc Mon Sep 17 00:00:00 2001 From: cacheflux Date: Thu, 30 May 2019 00:25:44 +0200 Subject: [PATCH] Add golint from upstream repo and docker build --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index ffc7417..0eaeea7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,5 +10,11 @@ notifications: # Don't email the results of the test runs. email: false +before_script: +- go get -u golang.org/x/lint/golint + script: +- go build - go test -v -race ./... +- golint -set_exit_status ./... +- docker build .