mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
githooks: add check that go.mod in integrationtests/gomodvendor is tidy (#3750)
This commit is contained in:
parent
a0f032ee18
commit
53571b0a26
1 changed files with 8 additions and 0 deletions
|
@ -13,6 +13,14 @@ for f in $(git diff --cached --name-only); do
|
||||||
fi
|
fi
|
||||||
done
|
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.
|
# Check that all Go files are properly gofumpt-ed.
|
||||||
output=$(gofumpt -d $(git diff --cached --name-only -- '*.go'))
|
output=$(gofumpt -d $(git diff --cached --name-only -- '*.go'))
|
||||||
if [ -n "$output" ]; then
|
if [ -n "$output" ]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue