Skip to content

Commit c412f53

Browse files
authored
Update tests.yml
1 parent b6302d0 commit c412f53

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,14 @@ jobs:
2323
uses: actions/checkout@v2
2424

2525
- name: Start mysql service
26-
run: sudo /etc/init.d/mysql start
26+
run: mysqld \
27+
--datadir=/var/lib/mysql \
28+
--user=mysql \
29+
--server-id=1 \
30+
--log-bin=/var/lib/mysql/mysql-bin.log \
31+
--binlog-format=row \
32+
--max_allowed_packet=64M \
33+
--default_authentication_plugin=mysql_native_password
2734

2835
- name: Setup PHP, with composer and extensions
2936
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)