#!/bin/sh echo "Checking code quality (you want to see no output here)" echo "" echo "Vetting:" go list ./... | xargs go vet echo "" echo "Linting:" go list ./... | xargs golint echo "Time to format" gofmt -l -s -w .