mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
23 lines
298 B
YAML
23 lines
298 B
YAML
|
language: php
|
||
|
|
||
|
php:
|
||
|
- 5.3
|
||
|
- 5.4
|
||
|
- 5.5
|
||
|
- 5.6
|
||
|
- hhvm
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- php: hhvm
|
||
|
|
||
|
before_script:
|
||
|
- composer self-update
|
||
|
- composer install
|
||
|
- pyrus install pear/PHP_CodeSniffer
|
||
|
- phpenv rehash
|
||
|
|
||
|
script:
|
||
|
- phpcs --standard=psr2 src/
|
||
|
- phpunit --coverage-text
|