mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
24 lines
335 B
YAML
24 lines
335 B
YAML
language: php
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
- 7
|
|
- hhvm
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
script:
|
|
- phpunit --configuration tests/phpunit.xml
|
|
- ./bin/sabre-cs-fixer fix . --dry-run --diff
|
|
|
|
before_script:
|
|
- phpenv config-rm xdebug.ini; true
|
|
- composer install
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|