1
0
Fork 0

Improve makefile

This commit is contained in:
Michael 2024-01-17 11:12:05 +01:00 committed by GitHub
parent 34d2a816c2
commit 39b0aa6650
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 162 additions and 290 deletions

14
script/validate-vendor.sh Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -o errexit
set -o pipefail
set -o nounset
SCRIPT_DIR="$( cd "$( dirname "${0}" )" && pwd -P)"; export SCRIPT_DIR
echo "checking go modules for unintentional changes..."
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
echo 'Congratulations! All go modules changes are done the right way.'