Browse Source

Re-enable errcheck

Willem van Bergen 10 years ago
parent
commit
029db836cf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .travis.yml

+ 2 - 2
.travis.yml

@@ -16,12 +16,12 @@ before_install:
 - go install -a -race regexp # Fix for go 1.2
 - go get code.google.com/p/go.tools/cmd/vet || true # Fix for go 1.2
 - go get golang.org/x/tools/cmd/vet
-# - go get github.com/kisielk/errcheck
+- go get github.com/kisielk/errcheck
 
 script:
 - go test -v -race ./...
 - go vet ./...
-# - errcheck github.com/Shopify/sarama/
+- errcheck github.com/Shopify/sarama/
 - if [[ -n $(go fmt ./...) ]]; then echo "Please run go fmt on your code." && exit 1; fi
 
 notifications: