We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb26207 commit e865853Copy full SHA for e865853
.github/workflows/draft-release.yml
@@ -8,6 +8,17 @@ on:
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
+ services:
12
+ postgres:
13
+ image: postgres:16
14
+ env:
15
+ POSTGRES_DB: cache_test
16
+ POSTGRES_USER: postgres
17
+ POSTGRES_PASSWORD: postgres
18
+ ports:
19
+ - 5432:5432
20
+ options: >-
21
+ --health-cmd "pg_isready -U postgres" --health-interval 10s --health-timeout 5s --health-retries 5
22
steps:
23
- name: Checkout code
24
uses: actions/checkout@v4
0 commit comments