23 lines
278 B
YAML
23 lines
278 B
YAML
language: php
|
|
|
|
dist: trusty
|
|
|
|
php:
|
|
- 7.3
|
|
- 8.0
|
|
- hhvm
|
|
|
|
sudo: false
|
|
|
|
before_script:
|
|
- composer self-update
|
|
- composer install --prefer-source --no-interaction
|
|
|
|
script:
|
|
- vendor/bin/phpunit --coverage-text
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
fast_finish: true
|