Skip to content

Commit 5c5d2c5

Browse files
author
Oleg
committed
fix travis db config
1 parent 4a542cd commit 5c5d2c5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Diff for: .travis.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: php
22

33
php:
4+
- "7.3"
45
- "7.2"
56
- "7.1"
67

@@ -10,8 +11,11 @@ cache:
1011
directories:
1112
- "$HOME/.composer/cache"
1213

13-
before_script:
14-
- mysql -e 'create database dataflow;'
14+
services:
15+
- mysql
16+
17+
before_install:
18+
- mysql -e 'create database if not exists dataflow;'
1519
- cp -f tests/functional/config/db-config.travis.php tests/functional/config/db-config.php
1620

1721
script:

0 commit comments

Comments
 (0)