Skip to content

Commit

Permalink
Add port in test pg connection step
Browse files Browse the repository at this point in the history
  • Loading branch information
chtushar committed May 29, 2024
1 parent f634575 commit 0fe3774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: mysql -h localhost -u root -e 'SELECT version()'

- name: Test Postgres Connection
run: psql -h localhost -U root -c 'SELECT version()'
run: psql -h localhost -p 7432 -U root -c 'SELECT version()'

- name: Create test DB
run: mysql -h localhost -u root -e 'CREATE DATABASE test_db'
Expand Down

0 comments on commit 0fe3774

Please sign in to comment.