Skip to content

Commit 805ebe2

Browse files
committed
wip
1 parent 3a29136 commit 805ebe2

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ jobs:
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-

0 commit comments

Comments
 (0)