From acd3a10923bc0ca3c3fc0697e2055216bc79bf84 Mon Sep 17 00:00:00 2001 From: Paolo Galli Date: Tue, 9 Jul 2024 11:50:55 +0200 Subject: [PATCH] test: replace make test with go test in github workflow --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8f1a5f71dd01..3d24775a32cd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -30,4 +30,4 @@ jobs: - name: Make Test id: unit-test - run: make test \ No newline at end of file + run: go test ./... \ No newline at end of file