You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .travis.yml
+18
Original file line number
Diff line number
Diff line change
@@ -164,6 +164,24 @@ matrix:
164
164
- cd tests && ./test.sh
165
165
before_install:
166
166
- sudo mysql -e "use mysql; update user set authentication_string=PASSWORD('') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
167
+
- php: 7.4
168
+
dist: xenial
169
+
sudo: required
170
+
services:
171
+
- mysql
172
+
before_script:
173
+
- curl -s http://getcomposer.org/installer | php
174
+
- php composer.phar install
175
+
- mysql -V
176
+
- mysqldump -V
177
+
- tests/create_users.sh
178
+
script:
179
+
- php -l src/Ifsnop/Mysqldump/Mysqldump.php
180
+
- php src/Ifsnop/Mysqldump/Mysqldump.php
181
+
- vendor/bin/phpunit
182
+
- cd tests && ./test.sh
183
+
before_install:
184
+
- sudo mysql -e "use mysql; update user set authentication_string=PASSWORD('') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
0 commit comments