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 b0a929a commit a8566deCopy full SHA for a8566de
1 file changed
.github/workflows/deploy.yml
@@ -13,6 +13,24 @@ jobs:
13
CI: true
14
TERM: xterm
15
FORCE_COLOR: 1
16
+ PGUSER: postgres
17
+ PGPASSWORD: postgres
18
+ PGHOST: localhost
19
+ PGPORT: 5432
20
+
21
+ services:
22
+ postgres:
23
+ image: postgres:13
24
+ env:
25
+ POSTGRES_USER: postgres
26
+ POSTGRES_PASSWORD: postgres
27
+ POSTGRES_DB: postgres
28
+ ports:
29
+ - "0.0.0.0:5432:5432"
30
+ # needed because the postgres container does not provide a healthcheck
31
+ options:
32
+ --health-cmd pg_isready --health-interval 10s --health-timeout 5s
33
+ --health-retries 5 --name postgres
34
35
steps:
36
- uses: actions/checkout@v2
0 commit comments