We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f33346e commit 0a6f190Copy full SHA for 0a6f190
.github/workflows/ci.yml
@@ -56,8 +56,9 @@ jobs:
56
strategy:
57
matrix:
58
mysql_version:
59
- - 8.0.40
60
- - 8.4.3
+ - '5.7'
+ - '8.0'
61
+ - '8.4'
62
name: Tests with MySQL ${{ matrix.mysql_version }}
63
runs-on: ubuntu-latest
64
services:
@@ -67,7 +68,12 @@ jobs:
67
68
MYSQL_ALLOW_EMPTY_PASSWORD: yes
69
ports:
70
- 3306:3306
- 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
77
78
steps:
79
- name: MySQL versions
0 commit comments