CodeIgniter4/.travis.yml

28 lines
355 B
YAML
Raw Normal View History

2015-10-27 21:56:35 -05:00
language: php
php:
- 7
2016-11-11 23:55:08 -06:00
global:
2016-11-12 00:09:59 -06:00
- CI=true
2016-11-11 23:55:08 -06:00
- CI_ENV=testing
env:
2016-11-11 23:52:11 -06:00
- DB=mysqli
- DB=postgres
services:
2016-05-08 23:46:25 -05:00
- mysql
- postgresql
2016-11-12 00:09:59 -06:00
script:
- php vendor/bin/phpunit -v
2016-11-12 00:13:30 -06:00
before_install:
2016-11-12 00:27:28 -06:00
- mysql -e "create database IF NOT EXISTS test;" -uroot;
- psql -c 'create database test;' -U postgres
2016-11-12 00:13:30 -06:00
before_script:
2016-11-11 23:52:11 -06:00
- composer install --prefer-source