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 82a7abe commit b41fd7fCopy full SHA for b41fd7f
.github/workflows/tests.yml
@@ -24,14 +24,9 @@ jobs:
24
25
- name: Start mysql service
26
run: |
27
- sudo chmod 777 /var/lib/mysql /var/log/mysql/*
28
- mysqld \
29
- --datadir=/var/lib/mysql \
30
- --server-id=1 \
31
- --log-bin=/var/lib/mysql/mysql-bin.log \
32
- --binlog-format=row \
33
- --max_allowed_packet=64M
34
-
+ echo -e "\n[mysqld]\nserver-id=1\nbinlog_format=row\nlog_bin=/var/log/mysql/mysql-bin.log" | sudo tee -a /etc/mysql/my.cnf
+ sudo /etc/init.d/mysql start
+
35
- name: Setup PHP, with composer and extensions
36
uses: shivammathur/setup-php@v2
37
with:
0 commit comments