We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6302d0 commit c412f53Copy full SHA for c412f53
.github/workflows/tests.yml
@@ -23,7 +23,14 @@ jobs:
23
uses: actions/checkout@v2
24
25
- name: Start mysql service
26
- run: sudo /etc/init.d/mysql start
+ 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
34
35
- name: Setup PHP, with composer and extensions
36
uses: shivammathur/setup-php@v2
0 commit comments