chore(make): fixed makefile to use go variable instead of go in PATH
All checks were successful
Go Tests / go-tests (push) Successful in 1m23s

This commit is contained in:
Manuel Ganter 2025-11-10 16:58:17 +01:00
parent 793c0b1913
commit 36c0b89eb5
No known key found for this signature in database

View file

@ -23,7 +23,7 @@ clean: ## Clean up build artifacts
test: verify go-test test: verify go-test
lint: lint:
@go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.63.4 run --timeout=8m --build-tags testing ./... @$(GO) run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.63.4 run --timeout=8m --build-tags testing ./...
go-test: go-test:
@$(GO) test -race -tags testing -v $(TEST_ARGS) -timeout=15m -parallel=4 -count=1 ./... @$(GO) test -race -tags testing -v $(TEST_ARGS) -timeout=15m -parallel=4 -count=1 ./...