We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c9601 commit 642645bCopy full SHA for 642645b
.github/workflows/test.yml
@@ -97,9 +97,13 @@ jobs:
97
-p ${{ env.POSTGRES_PORT }}:5432 \
98
--name supabase_postgres \
99
-d supabase/postgres:${{ steps.settings.outputs.postgres-version }}
100
+
101
- name: Install psql
102
run: |
- sudo nix profile install .#psql_${{ env.PGMAJOR }}/bin
103
+ sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
104
+ wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
105
+ sudo apt update
106
+ sudo apt install -y --no-install-recommends postgresql-client-${{ env.PGMAJOR }}
107
108
- name: Install pg_prove
109
run: sudo cpan -T TAP::Parser::SourceHandler::pgTAP
0 commit comments