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 df4226e commit e582b00Copy full SHA for e582b00
.github/workflows/ci.yml
@@ -19,6 +19,8 @@ jobs:
19
postgres:
20
image: postgres:latest
21
env:
22
+ env:
23
+ POSTGRES_DB: postgres
24
POSTGRES_USER: postgres
25
POSTGRES_PASSWORD: postgres
26
options: >-
@@ -30,9 +32,10 @@ jobs:
30
32
- 5432:5432
31
33
34
CI: true
- PGHOST: 127.0.0.1
- PGUSER: postgres
35
- PGPASS: postgres
+ POSTGRES_HOST: localhost
36
+ POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
37
+ POSTGRES_USER: postgres
38
+ POSTGRES_PASSWORD: postgres
39
strategy:
40
fail-fast: false
41
matrix:
.github/workflows/test.yml
0 commit comments