fix(scripts): use make fmt-check instead of go fmt

This commit is contained in:
2025-11-07 09:52:17 +01:00
parent e98e4d3099
commit bc740f7b1f

View File

@@ -50,8 +50,8 @@ docker run --rm \
echo '📥 Installing golangci-lint...' echo '📥 Installing golangci-lint...'
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /root/go/bin || exit 1 curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /root/go/bin || exit 1
echo '📋 Running go fmt...' echo '📋 Running make fmt-check...'
go fmt ./... || exit 1 make fmt-check || exit 1
echo '🔍 Running make lint...' echo '🔍 Running make lint...'
make lint || exit 1 make lint || exit 1