chore: 🔧 update go mod and makefile
Some checks failed
CI / Test (1.25) (pull_request) Failing after 1m10s
CI / Lint (pull_request) Successful in -27m31s
Integration Tests / Integration Tests (pull_request) Failing after -28m12s
CI / Build (pull_request) Successful in 34s
CI / Test (1.24) (pull_request) Successful in -26m52s

This commit is contained in:
2026-01-03 21:03:29 +02:00
parent 5af9228014
commit 4688dbe7f1
2 changed files with 2 additions and 2 deletions

View File

@@ -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

2
go.mod
View File

@@ -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
)