We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3463452 commit 06c7d15Copy full SHA for 06c7d15
1 file changed
.github/workflows/test.yml
@@ -37,6 +37,9 @@ jobs:
37
- name: Install dependencies
38
run: yarn install
39
40
+ - name: Set DATABASE_URL
41
+ run: echo "DATABASE_URL=postgres://postgres:12345678@localhost:5432/database_services_test" >> $GITHUB_ENV
42
+
43
- name: Wait for Postgres to be ready
44
run: |
45
for i in {1..10}; do
@@ -53,7 +56,7 @@ jobs:
53
56
- name: Check Database Connection
54
57
55
58
PGPASSWORD=12345678 psql -h localhost -U postgres -d database_services_test -c "\dt"
-
59
60
61
- name: Check PostgreSQL logs
62
run: docker logs $(docker ps -q --filter "ancestor=postgres:13")
0 commit comments