mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2024-11-12 19:33:27 +00:00
21 lines
215 B
YAML
21 lines
215 B
YAML
|
language: php
|
||
|
|
||
|
sudo: false
|
||
|
|
||
|
php:
|
||
|
- '5.3'
|
||
|
- '5.4'
|
||
|
- '5.5'
|
||
|
- '5.6'
|
||
|
- '7.0'
|
||
|
- '7.1'
|
||
|
|
||
|
before_install:
|
||
|
- phpenv config-rm xdebug.ini
|
||
|
- composer self-update
|
||
|
|
||
|
install:
|
||
|
- composer install
|
||
|
|
||
|
script: phpunit
|