We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3da0e3 commit 56c43beCopy full SHA for 56c43be
.github/workflows/ci.yml
@@ -68,7 +68,13 @@ jobs:
68
MYSQL_ALLOW_EMPTY_PASSWORD: yes
69
ports:
70
- 3306:3306
71
- options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
+ volumes:
72
+ - my.cnf:/etc/my.cnf
73
+ options: >-
74
+ --health-cmd="mysqladmin ping"
75
+ --health-interval=10s
76
+ --health-timeout=5s
77
+ --health-retries=3
78
79
steps:
80
- name: MySQL versions
.github/workflows/my.cnf
@@ -0,0 +1,3 @@
1
+[mysqld]
2
+server-id=100
3
+log-bin
0 commit comments