From ded6012cb85fff8605737e690e06d470278a0ebc Mon Sep 17 00:00:00 2001 From: BuckarooBanzay Date: Sun, 22 Oct 2023 17:33:37 +0200 Subject: [PATCH] don't execute tests parallel (concurrent schema migrations don't work in psql) --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1fd1e37..51e9004 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: - name: Test run: | - go test ./... -coverprofile=profile.cov + go test -p 1 ./... -coverprofile=profile.cov - uses: shogo82148/actions-goveralls@v1.8.0 with: