Skip to content

Commit 02d01e3

Browse files
committed
fix(ci): disable golangci-lint-kal
It's broken upstream in the release we're currently using, but was fixed upstream. We'll pull in the fix when we rebase on 2.2 Signed-off-by: Rob Bell <robell@redhat.com>
1 parent 720895f commit 02d01e3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,11 @@ vet: ## Run go vet against the code.
164164
go vet ./...
165165

166166
.PHONY: golangci-lint
167-
golangci-lint: golangci-lint-install golangci-lint-kal ## Run golangci-lint to verify Go files.
167+
# TODO(robell): re-enable golangci-lint-kal once we've pulled in upstream v2.2.
168+
# golangci-lint: golangci-lint-install golangci-lint-kal ## Run golangci-lint to verify Go files.
169+
golangci-lint: golangci-lint-install
168170
golangci-lint run --timeout 5m --go 1.24 ./...
169-
$(GOLANGCI_LINT_KAL) run -v --config $(PROJECT_DIR)/.golangci-kal.yml
171+
#$(GOLANGCI_LINT_KAL) run -v --config $(PROJECT_DIR)/.golangci-kal.yml #
170172

171173
# Instructions to run tests.
172174
.PHONY: test

0 commit comments

Comments
 (0)