File tree 1 file changed +29
-0
lines changed
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,29 @@ jobs:
138
138
139
139
env :
140
140
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
141
164
142
165
strategy :
143
166
matrix :
@@ -182,5 +205,11 @@ jobs:
182
205
- name : Clean build
183
206
run : mix clean
184
207
208
+ # Create tables for testing if necessary
209
+ - name : Setup database
210
+ run : |
211
+ mix ecto.create
212
+ mix ecto.migrate
213
+
185
214
- name : Run tests
186
215
run : mix test
You can’t perform that action at this time.
0 commit comments