File tree Expand file tree Collapse file tree 1 file changed +18
-8
lines changed Expand file tree Collapse file tree 1 file changed +18
-8
lines changed Original file line number Diff line number Diff line change 17
17
mysql :
18
18
image : mysql:5.7
19
19
env :
20
- MYSQL_ALLOW_EMPTY_PASSWORD : yes
21
- MYSQL_DATABASE : forge
20
+ MYSQL_RANDOM_ROOT_PASSWORD : yes
21
+ MYSQL_DATABASE : pulse
22
+ MYSQL_USER : pulse
23
+ MYSQL_PASSWORD : password
22
24
ports :
23
25
- 3306:3306
24
26
options : --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
61
63
run : vendor/bin/pest
62
64
env :
63
65
DB_CONNECTION : mysql
64
- DB_USERNAME : root
66
+ DB_DATABASE : pulse
67
+ DB_USERNAME : pulse
68
+ DB_PASSWORD : password
65
69
66
70
mariadb :
67
71
runs-on : ubuntu-22.04
70
74
mysql :
71
75
image : mariadb:10.5
72
76
env :
73
- MYSQL_ALLOW_EMPTY_PASSWORD : yes
74
- MYSQL_DATABASE : forge
77
+ MYSQL_RANDOM_ROOT_PASSWORD : yes
78
+ MYSQL_DATABASE : pulse
79
+ MYSQL_USER : pulse
80
+ MYSQL_PASSWORD : password
75
81
ports :
76
82
- 3306:3306
77
83
options : --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
@@ -114,7 +120,9 @@ jobs:
114
120
run : vendor/bin/pest
115
121
env :
116
122
DB_CONNECTION : mysql
117
- DB_USERNAME : root
123
+ DB_DATABASE : pulse
124
+ DB_USERNAME : pulse
125
+ DB_PASSWORD : password
118
126
119
127
pgsql :
120
128
runs-on : ubuntu-22.04
@@ -123,8 +131,8 @@ jobs:
123
131
postgresql :
124
132
image : postgres:14
125
133
env :
126
- POSTGRES_DB : forge
127
- POSTGRES_USER : forge
134
+ POSTGRES_DB : pulse
135
+ POSTGRES_USER : pulse
128
136
POSTGRES_PASSWORD : password
129
137
ports :
130
138
- 5432:5432
@@ -169,6 +177,8 @@ jobs:
169
177
run : vendor/bin/pest
170
178
env :
171
179
DB_CONNECTION : pgsql
180
+ DB_DATABASE : pulse
181
+ DB_USERNAME : pulse
172
182
DB_PASSWORD : password
173
183
174
184
sqlite :
You can’t perform that action at this time.
0 commit comments