diff --git a/Makefile b/Makefile index b82eb20..a63da28 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ COMPOSE_CMD := $(shell \ all: lint test build ## Run linting, tests, and build -build: ## Build the binary +build: deps ## Build the binary @echo "Building $(BINARY_NAME)..." @mkdir -p $(BUILD_DIR) $(GOBUILD) -o $(BUILD_DIR)/$(BINARY_NAME) ./cmd/relspec diff --git a/go.mod b/go.mod index c936f27..5edd71c 100644 --- a/go.mod +++ b/go.mod @@ -8,6 +8,7 @@ require ( github.com/spf13/cobra v1.10.2 github.com/stretchr/testify v1.11.1 github.com/uptrace/bun v1.2.16 + golang.org/x/text v0.28.0 gopkg.in/yaml.v3 v3.0.1 ) @@ -27,5 +28,4 @@ require ( github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect golang.org/x/crypto v0.41.0 // indirect golang.org/x/sys v0.38.0 // indirect - golang.org/x/text v0.28.0 // indirect )