From b804ae5fc7aaa82d56150e238006d9bdbc4827c0 Mon Sep 17 00:00:00 2001 From: Tedi Mitiku Date: Thu, 11 Apr 2024 11:06:04 -0400 Subject: [PATCH] chore: add lint and tidy to build process (#2360) ## Description Adds lint and tidy to build script. Hopefully this helps catch lint errors before they get to CI! ## Is this change user facing? NO --- scripts/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build.sh b/scripts/build.sh index d2c3cfc4eb..e1ce96c8c2 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -19,6 +19,8 @@ set -u # ================================================================================================== # These scripts will be executed always MANDATORY_BUILD_SCRIPT_RELATIVE_FILEPATHS=( + "scripts/go-lint-all.sh" + "scripts/go-tidy-all.sh" "scripts/generate-kurtosis-version.sh" "cli/scripts/build.sh" )