From 078b9bc3d91658bbae92577b4f577d52df34c646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Thu, 13 May 2021 11:42:54 +0200 Subject: [PATCH] chore: enforce running the tests with go version --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3601e568e..70a630b03 100644 --- a/Makefile +++ b/Makefile @@ -85,8 +85,8 @@ check-no-changes: .PHONY: test test: prepare-test-context ## - Run all tests - @$(MAKE) test-unit - @$(MAKE) test-int + @./dev-tools/run_with_go_ver $(MAKE) test-unit + @./dev-tools/run_with_go_ver $(MAKE) test-int @$(MAKE) junit-report .PHONY: test-unit