Skip to content

Commit e9068b2

Browse files
committed
fixup! fix: Database Migration does set current version in DB #98
1 parent d23e0c4 commit e9068b2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ jobs:
3636
- "8.2"
3737
- "8.3"
3838

39+
services:
40+
mysql:
41+
image: mysql:5.5.62
42+
env:
43+
MYSQL_DATABASE: test
44+
MYSQL_ROOT_PASSWORD: testrootpass
45+
ports:
46+
- 3306:3306
47+
3948
steps:
4049
- name: Checkout
4150
uses: actions/checkout@v3
@@ -62,4 +71,6 @@ jobs:
6271
run: composer install --prefer-dist
6372

6473
- name: Run Tests
74+
env:
75+
MYSQL_DSN: 'mysql:host=127.0.0.1;dbname=test;user=root;pass=testrootpass'
6576
run: cd tests && php run.php

0 commit comments

Comments
 (0)