From a523cf338ef6cdd86fdb5d2867a8d459750955b8 Mon Sep 17 00:00:00 2001 From: Han Qiao Date: Tue, 12 Dec 2023 22:30:20 +0800 Subject: [PATCH 1/2] chore: add pg major version to test matrix --- .github/workflows/start.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/start.yml b/.github/workflows/start.yml index 160fa9d..8a900ce 100644 --- a/.github/workflows/start.yml +++ b/.github/workflows/start.yml @@ -21,10 +21,14 @@ jobs: version: - 1.0.0 - latest + pg_major: + - 14 + - 15 steps: - uses: actions/checkout@v4 - uses: ./ with: version: ${{ matrix.version }} - run: supabase init + - run: sed -i -E "s|^(major_version) .*|\1 = ${{ matrix.pg_major }}|" supabase/config.toml - run: supabase start From 784483297f9781073c73b42617d85e687bfef54b Mon Sep 17 00:00:00 2001 From: Han Qiao Date: Tue, 12 Dec 2023 22:38:45 +0800 Subject: [PATCH 2/2] chore: update min version to for pg15 compatibility --- .github/workflows/start.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/start.yml b/.github/workflows/start.yml index 82823b6..a630c45 100644 --- a/.github/workflows/start.yml +++ b/.github/workflows/start.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: version: - - 1.0.0 + - 1.28.3 - latest pg_major: - 14