mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
28 lines
355 B
YAML
28 lines
355 B
YAML
language: php
|
|
|
|
php:
|
|
- 7
|
|
|
|
global:
|
|
- CI=true
|
|
- CI_ENV=testing
|
|
|
|
env:
|
|
- DB=mysqli
|
|
- DB=postgres
|
|
|
|
services:
|
|
- mysql
|
|
- postgresql
|
|
|
|
script:
|
|
- php vendor/bin/phpunit -v
|
|
|
|
before_install:
|
|
- mysql -e "create database IF NOT EXISTS test;" -uroot;
|
|
- psql -c 'create database test;' -U postgres
|
|
|
|
before_script:
|
|
- composer install --prefer-source
|
|
|