testify/.travis.gofmt.sh
Boyan Soubachov 9cc41e665b Check go generate on builds
* Check if we have mismatching `go generate ./...` output on builds
2020-01-29 07:21:51 +11:00

15 lines
278 B
Bash
Executable File

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