blob: abfe12bd13be7289e0099387290c348892745d14 [file] [log] [blame]
#!/bin/sh
# Copyright 2021 The Bazel Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
set -eu
# Confirm that go.mod and go.sum are tidy
cp go.mod go.mod.orig
cp go.sum go.sum.orig
go mod tidy
diff go.mod.orig go.mod
diff go.sum.orig go.sum
rm go.mod.orig go.sum.orig
# Run tests
go test ./...