From f6a3bb7dc98b966e63c84171293f2cfba42aebb7 Mon Sep 17 00:00:00 2001 From: Anmol1696 Date: Sun, 16 Jul 2023 10:55:00 +0200 Subject: [PATCH] ci(workflow): fix test make command --- starship/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starship/Makefile b/starship/Makefile index e468b6e1..9841e6c9 100644 --- a/starship/Makefile +++ b/starship/Makefile @@ -11,7 +11,7 @@ HELM_VERSION = v0.1.38 .PHONY: test test: - cd tests/ go test ./... + cd tests/ && go test -v ./... ############################################################################### ### All commands ###