Skip to content

Commit 0a6f190

Browse files
committed
CI: Test with MySQL 5.7
1 parent f33346e commit 0a6f190

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ jobs:
5656
strategy:
5757
matrix:
5858
mysql_version:
59-
- 8.0.40
60-
- 8.4.3
59+
- '5.7'
60+
- '8.0'
61+
- '8.4'
6162
name: Tests with MySQL ${{ matrix.mysql_version }}
6263
runs-on: ubuntu-latest
6364
services:
@@ -67,7 +68,12 @@ jobs:
6768
MYSQL_ALLOW_EMPTY_PASSWORD: yes
6869
ports:
6970
- 3306:3306
70-
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
71+
options: >-
72+
--entrypoint="docker-entrypoint.sh --log-bin --server-id=100"
73+
--health-cmd="mysqladmin ping"
74+
--health-interval=10s
75+
--health-timeout=5s
76+
--health-retries=3
7177
7278
steps:
7379
- name: MySQL versions

0 commit comments

Comments
 (0)