Show help message when goimports/go mod tidy breaks the build

This commit is contained in:
Deluan 2023-01-13 08:58:41 -05:00
parent 1374dab087
commit feabcdfe9f
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ jobs:
run: |
git status --porcelain
if [ -n "$(git status --porcelain)" ]; then
echo 'To fix this check, run "goimports -w $(find . -name '*.go' | grep -v '_gen.go$') && go mod tidy"'
exit 1
fi