You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 6, 2024. It is now read-only.
Add the test-e2e, lint, and lint-fix targets that are suggested by
kubebuilder, with adjustments to work for COSI monorepo.
Signed-off-by: Blaine Gardner <[email protected]>
test: .test.proto test.client test.controller test.sidecar ## Run tests including unit tests
62
62
63
+
.PHONY: test-e2e
64
+
test-e2e: # Run e2e tests
65
+
@echo "unimplemented placeholder"
66
+
67
+
.PHONY: lint
68
+
lint: golangci-lint.client golangci-lint.controller golangci-lint.sidecar ## Run all linters (suggest `make -k`)
69
+
70
+
.PHONY: lint-fix
71
+
lint-fix: golangci-lint-fix.client golangci-lint-fix.controller golangci-lint-fix.sidecar ## Run all linters and perform fixes where possible (suggest `make -k`)
0 commit comments