github.com/unicornultrafoundation/go-u2u@v1.0.0-rc1.0.20240205080301-e74a83d3fadc/metrics/validate.sh (about) 1 #!/bin/bash 2 3 set -e 4 5 # check there are no formatting issues 6 GOFMT_LINES=`gofmt -l . | wc -l | xargs` 7 test $GOFMT_LINES -eq 0 || echo "gofmt needs to be run, ${GOFMT_LINES} files have issues" 8 9 # run the tests for the root package 10 go test -race .