Last active
September 29, 2018 08:06
-
-
Save gocanto/46b8d39576f612f9c6b8b4ffb3efac98 to your computer and use it in GitHub Desktop.
MySQL 5.7 Travis CI configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: php | |
php: | |
- 7.0 | |
- 7.1 | |
services: | |
- mysql | |
addons: | |
apt: | |
sources: | |
- mysql-5.7-trusty | |
packages: | |
- mysql-server | |
dist: trusty | |
sudo: required | |
before_script: | |
- mysql -e 'create database antvel;' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you.