blob: 33697068fbd3eed2b69c8c3977fcaf33a737a4be [file] [log] [blame]
#!/bin/bash
# Fail on any error
set -eo
# Display commands being run
set -x
if [[ $KOKORO_JOB_NAME != *"latest-version"* ]]; then
exit 0
fi
# Fail if a dependency was added without the necessary go.mod/go.sum change
# being part of the commit.
go mod tidy
git diff go.mod | tee /dev/stderr | (! read)
git diff go.sum | tee /dev/stderr | (! read)
# Easier to debug CI.
pwd
# Look at all .go files (ignoring .pb.go files) and make sure they have a Copyright. Fail if any don't.
find . -type f -name "*.go" ! -name "*.pb.go" -exec grep -L "\(Copyright [0-9]\{4,\}\)" {} \; 2>&1 | tee /dev/stderr | (! read)
gofmt -s -d -l . 2>&1 | tee /dev/stderr | (! read)
goimports -l . 2>&1 | tee /dev/stderr | (! read)
# No need to golint / staticcheck when it's just proto-generated files