File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 6161 - name : Create SQLite file
6262 run : touch database/testing.sqlite
6363
64- - name : Run migrations
65- run : php artisan migrate --force
66-
6764 - name : Unit tests
6865 run : composer run test:parallel -- tests/Unit
6966 env :
@@ -132,9 +129,10 @@ jobs:
132129 SKIP_MIGRATIONS : true
133130
134131 - name : Integration tests
135- run : composer run test:parallel -- tests/Integration
132+ run : |
133+ composer run test:parallel -- tests/Integration
134+ echo {{ job.env.DB_HOST }}
136135 env :
137- DB_HOST : ${{ job.env.DB_HOST }}
138136 SKIP_MIGRATIONS : false
139137
140138 mariadb :
@@ -195,9 +193,10 @@ jobs:
195193 SKIP_MIGRATIONS : true
196194
197195 - name : Integration tests
198- run : composer run test:parallel -- tests/Integration
196+ run : |
197+ composer run test:parallel -- tests/Integration
198+ echo {{ job.env.DB_HOST }}
199199 env :
200- DB_HOST : ${{ job.env.DB_HOST }}
201200 SKIP_MIGRATIONS : false
202201
203202 postgresql :
@@ -263,8 +262,8 @@ jobs:
263262 SKIP_MIGRATIONS : true
264263
265264 - name : Integration tests
266- run : composer run test:parallel -- tests/Integration
265+ run : |
266+ composer run test:parallel -- tests/Integration
267+ echo {{ job.env.DB_HOST }}
267268 env :
268- DB_HOST : ${{ job.env.DB_HOST }}
269269 SKIP_MIGRATIONS : false
270-
You can’t perform that action at this time.
0 commit comments