Skip to content

Commit 1e2ecd7

Browse files
committed
fix(ci): add postgresql to CI workflow
1 parent affd5db commit 1e2ecd7

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,29 @@ jobs:
138138

139139
env:
140140
MIX_ENV: test
141+
# PostgreSQL configuration in environment variables
142+
PGHOST: localhost
143+
PGUSER: postgres
144+
PGPASSWORD: postgres
145+
PGDATABASE: pagination_ex_test
146+
PGPORT: 5432
147+
148+
# PostgreSQL service that will run alongside the tests
149+
services:
150+
postgres:
151+
image: postgres:14
152+
env:
153+
POSTGRES_USER: postgres
154+
POSTGRES_PASSWORD: postgres
155+
POSTGRES_DB: pagination_ex_test
156+
ports:
157+
- 5432:5432
158+
# Options to ensure PostgreSQL is ready
159+
options: >-
160+
--health-cmd pg_isready
161+
--health-interval 10s
162+
--health-timeout 5s
163+
--health-retries 5
141164
142165
strategy:
143166
matrix:
@@ -182,5 +205,11 @@ jobs:
182205
- name: Clean build
183206
run: mix clean
184207

208+
# Create tables for testing if necessary
209+
- name: Setup database
210+
run: |
211+
mix ecto.create
212+
mix ecto.migrate
213+
185214
- name: Run tests
186215
run: mix test

0 commit comments

Comments
 (0)