mirror of
https://github.com/openshift/openshift-mcp-server.git
synced 2025-10-17 14:27:48 +03:00
feat(configuration): initial configuration_view view implementation
This commit is contained in:
8
Makefile
8
Makefile
@@ -37,14 +37,18 @@ clean: ## Clean up all build artifacts
|
||||
rm -rf $(CLEAN_TARGETS)
|
||||
|
||||
.PHONY: build
|
||||
build: ## Build the project
|
||||
build: clean tidy format ## Build the project
|
||||
go build $(COMMON_BUILD_ARGS) -o $(BINARY_NAME) ./cmd/kubernetes-mcp-server
|
||||
|
||||
CLEAN_TARGETS+='$(BINARY_NAME)'
|
||||
|
||||
.PHONY: test
|
||||
test: ## Run the tests
|
||||
go test -v ./...
|
||||
go test -count=1 -v ./...
|
||||
|
||||
.PHONY: format
|
||||
format: ## Format the code
|
||||
go fmt ./...
|
||||
|
||||
.PHONY: tidy
|
||||
tidy: ## Tidy up the go modules
|
||||
|
||||
Reference in New Issue
Block a user