From f052347d34c6052f438f8eaaaaff761a4f281da1 Mon Sep 17 00:00:00 2001 From: Michele Zanotti Date: Fri, 2 Aug 2024 18:26:45 +0200 Subject: [PATCH] chore: CI workflow --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7ee171d..b8e1d5c 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +OK?=\033[0;32m[Ok]\033[0m + ##@ General .PHONY: help help: ## Display this help. @@ -21,9 +23,8 @@ test: ## Run the tests .PHONY: formatting formatting: - @echo "Checking formatting" - terraform fmt -check - @echo "Formatting OK" + @echo "\033[0;33m[Checking formatting...]\033[0m" + @terraform fmt -check && echo "${OK}" .PHONY: check check: formatting test