24 lines
312 B
YAML
24 lines
312 B
YAML
language: php
|
|
|
|
php:
|
|
- '7.2'
|
|
- '7.3'
|
|
|
|
env:
|
|
- DB=sqlite
|
|
|
|
sqlite:
|
|
adapter: sqlite3
|
|
database: ':memory:'
|
|
timeout: 500
|
|
|
|
before_install:
|
|
# turn off XDebug
|
|
- phpenv config-rm xdebug.ini || return
|
|
|
|
before_script:
|
|
- cp .env.testing .env
|
|
- composer test --no-interaction
|
|
|
|
script:
|
|
- vendor/bin/phpunit |