From 71234e5d1764eced76ea212679085d2b94266c01 Mon Sep 17 00:00:00 2001 From: arthurflame Date: Wed, 22 Jan 2025 18:24:33 +0100 Subject: [PATCH] feat: adding -parallel=1 to the go.yml workflow for unit test step --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 170af6b..4484093 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -98,7 +98,7 @@ jobs: go-version: "1.22" - name: Unit test - run: go test -v -cover -coverprofile coverage.out ./... + run: go test -v -cover -parallel=1 -coverprofile coverage.out ./... - name: Check coverage id: check-coverage