diff --git a/testing/quality.sh b/testing/quality.sh new file mode 100755 index 0000000..87db32f --- /dev/null +++ b/testing/quality.sh @@ -0,0 +1,12 @@ +#!/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