Skip to content

Commit 58891e9

Browse files
committed
fix phpunit.yml
1 parent 1501b31 commit 58891e9

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

.github/workflows/phpunit.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,19 @@ jobs:
2828
php-versions: ['8.2', '8.3']
2929
db-platforms: ['MySQLi']
3030

31-
mysql:
32-
image: mysql:8.0
33-
env:
34-
MYSQL_ALLOW_EMPTY_PASSWORD: yes
35-
MYSQL_DATABASE: test
36-
ports:
37-
- 3306:3306
38-
options: >-
39-
--health-cmd="mysqladmin ping"
40-
--health-interval=10s
41-
--health-timeout=5s
42-
--health-retries=3
31+
services:
32+
mysql:
33+
image: mysql:8.0
34+
env:
35+
MYSQL_ALLOW_EMPTY_PASSWORD: yes
36+
MYSQL_DATABASE: test
37+
ports:
38+
- 3306:3306
39+
options: >-
40+
--health-cmd="mysqladmin ping"
41+
--health-interval=10s
42+
--health-timeout=5s
43+
--health-retries=3
4344
4445
steps:
4546
- name: Free Disk Space (Ubuntu)

tests/_support/Config/Registrar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Registrar
3232
'swapPre' => '',
3333
'encrypt' => false,
3434
'compress' => false,
35-
'strictOn' => false,
35+
'strictOn' => true,
3636
'failover' => [],
3737
'port' => 3306,
3838
],

0 commit comments

Comments
 (0)