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 48f823b commit 9031f2aCopy full SHA for 9031f2a
.github/workflows/build.yml
@@ -191,6 +191,20 @@ jobs:
191
# run on a larger runner for more SSD/resource access
192
runs-on: ubuntu-latest
193
if: true
194
+ services:
195
+ postgres:
196
+ image: postgres:15
197
+ env:
198
+ POSTGRES_USER: postgres
199
+ POSTGRES_PASSWORD: postgres
200
+ POSTGRES_DB: spin_dev
201
+ ports:
202
+ - 5432:5432
203
+ options: >-
204
+ --health-cmd pg_isready
205
+ --health-interval 10s
206
+ --health-timeout 5s
207
+ --health-retries 5
208
steps:
209
- uses: actions/checkout@v3
210
0 commit comments