Skip to content

Commit

Permalink
testing with older version 16.4-1
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLecocq committed Sep 19, 2024
1 parent c36f056 commit dd7e0d5
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test_postgresql_OS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,24 @@ jobs:
done
shell: bash

- name: Set up PostgreSQL user and database
- name: Set up PostgreSQL user and database on MacOS
if: matrix.os == 'ubuntu-latest'
run: |
./postgresql/bin/createdb "runner"
./postgresql/bin/psql -c "CREATE USER msnoise WITH PASSWORD 'msnoise';"
./postgresql/bin/psql -c "ALTER USER msnoise WITH SUPERUSER;"
shell: bash

- name: Set up PostgreSQL user and database on Windows
if: matrix.os == 'windows-latest'
run: |
./postgresql/bin/psql -c "CREATE USER msnoise WITH PASSWORD 'msnoise';"
./postgresql/bin/psql -c "ALTER USER msnoise WITH SUPERUSER;"
./postgresql/bin/createdb "runner"
shell: bash



- name: Verify PostgreSQL setup
run: |
./postgresql/bin/psql -c "\l"
Expand Down

0 comments on commit dd7e0d5

Please sign in to comment.