From 534ed997f6e751a5d440159d1440e5816a459f52 Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Mon, 28 Oct 2024 14:16:23 +0900 Subject: [PATCH] build: document doGoModTidy function in ci.go --- build/ci.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/ci.go b/build/ci.go index 1765d750c2..d47e378811 100644 --- a/build/ci.go +++ b/build/ci.go @@ -409,6 +409,8 @@ func compareHashedFilesets(preHashes map[string][32]byte, postHashes map[string] return updates } +// doGoModTidy runs 'go mod tidy' and asserts that go.sum/go.mod do not change +// as a result. func doGoModTidy() { targetFiles := []string{"go.mod", "go.sum"} preHashes, err := hashSourceFiles(targetFiles)