From 91d85ad11a8c80892eab25ab7d84dc590459dc1d Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 29 Nov 2023 15:16:44 -0700 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6851f67..7ea8ca3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,6 @@ jobs: run: | - name: Verify PostgreSQL run: | - pg_dump --version | grep -q "PostgreSQL ${matrix.postgresql_version}.*" # Check if the version in the output matches the version in the matrix - psql --version | grep -q "psql (PostgreSQL) ${matrix.postgresql_version}.*" # Check if the version in the output matches the version in the matrix - pg_restore --version | grep -q "pg_restore (PostgreSQL) ${matrix.postgresql_version}.*" # Check if the version in the output matches the version in the matrix + pg_dump --version | grep -q "PostgreSQL ${{ matrix.postgresql_version }}.*" + psql --version | grep -q "psql (PostgreSQL) ${{ matrix.postgresql_version }}.*" + pg_restore --version | grep -q "pg_restore (PostgreSQL) ${{ matrix.postgresql_version }}.*"