From ad39464314ffeee4acba510a54f7307bf02fe2bf Mon Sep 17 00:00:00 2001 From: Irina Mihai Date: Mon, 6 Nov 2023 15:55:16 -0500 Subject: [PATCH] Add ci-job target to Makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 5021f152e..ba00f2e50 100644 --- a/Makefile +++ b/Makefile @@ -37,17 +37,23 @@ generate: .PHONY: test tests test tests: + @echo "=== Run ginkgo... ===" ginkgo run -r $(ginkgo_flags) .PHONY: fmt fmt: + @echo "=== Run fmt... ===" gofmt -s -l -w . .PHONY: lint lint: + @echo "=== Run lint... ===" golangci-lint --version golangci-lint run +.PHONY: ci-job +ci-job: lint fmt test + .PHONY: clean clean: rm -rf \