Remove go vet from check.sh

Too slow.
This commit is contained in:
Bjørn Erik Pedersen
2026-01-29 15:45:21 +01:00
parent d67925f5a1
commit 6ef8017f60
-8
View File
@@ -36,13 +36,6 @@ run_gofmt() {
echo " OK"
}
# Run go vet
run_govet() {
echo "==> Running go vet..."
go vet $PACKAGES
echo " OK"
}
# Run staticcheck
run_staticcheck() {
# Check if staticcheck is installed, install if not
@@ -70,7 +63,6 @@ run_tests() {
TOTAL_START=$(date +%s.%N)
time_step "gofmt" run_gofmt
time_step "go vet" run_govet
time_step "staticcheck" run_staticcheck
time_step "tests" run_tests