cwtch/testing/quality.sh

13 lines
182 B
Bash
Raw Normal View History

#!/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