githooks: add check that go.mod in integrationtests/gomodvendor is tidy (#3750)

This commit is contained in:
Marten Seemann 2023-04-19 15:05:51 +02:00 committed by GitHub
parent a0f032ee18
commit 53571b0a26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,6 +13,14 @@ for f in $(git diff --cached --name-only); do
fi
done
pushd ./integrationtests/gomodvendor > /dev/null
go mod tidy
if [[ -n $(git diff --name-only -- "go.mod" "go.sum") ]]; then
echo "go.mod / go.sum in integrationtests/gomodvendor not tidied"
errored=true
fi
popd > /dev/null
# Check that all Go files are properly gofumpt-ed.
output=$(gofumpt -d $(git diff --cached --name-only -- '*.go'))
if [ -n "$output" ]; then