From 7e73bb6cae479bf37590bb505bbc9355ced2d190 Mon Sep 17 00:00:00 2001 From: Vinayak S Date: Sun, 3 Dec 2023 21:04:01 +0530 Subject: [PATCH] unset PGSERVICEFILE --- .github/workflows/makefile.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 38b38ef..55a48bc 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -38,7 +38,9 @@ jobs: id: postgres - name: initdb tables - run: make migrateup + run: | + unset PGSERVICEFILE + make migrateup - name: Run tests run: make gotest