From 0ac006fde14f49df7bb3d98bc06938d1ef3c5dbf Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Thu, 2 May 2024 16:22:12 +0530 Subject: [PATCH] Fixed typo in the previos commit for GitHub action --- .github/workflows/run-python-tests-pg.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-python-tests-pg.yml b/.github/workflows/run-python-tests-pg.yml index 23a0fa727..6262ce154 100644 --- a/.github/workflows/run-python-tests-pg.yml +++ b/.github/workflows/run-python-tests-pg.yml @@ -20,8 +20,8 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest] - pgver: [12] + os: [macos-latest, ubuntu-latest, windows-latest] + pgver: [12, 13, 14, 15, 16] runs-on: ${{ matrix.os }} @@ -113,7 +113,7 @@ jobs: sleep 2 done - /opt/homebrew/opt/postgresql@${{ matrix.pgver }}/bin/psql postgres -p 59${{ matrix.pgver }} -c 'CREATE ROLE postgres SUPERUSER LOGIN;' + psql postgres -p 59${{ matrix.pgver }} -c 'CREATE ROLE postgres SUPERUSER LOGIN;' - name: Install Python dependencies on Linux and macOS if: ${{ matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' }}