whatcanGOwrong
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -n "$(gofmt -l .)" ]; then
|
||||
echo "Go code is not formatted:"
|
||||
gofmt -d .
|
||||
exit 1
|
||||
fi
|
||||
|
||||
go generate ./...
|
||||
if [ -n "$(git status -s -uno)" ]; then
|
||||
echo "Go generate output does not match commit."
|
||||
echo "Did you forget to run go generate ./... ?"
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user