mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-10 04:02:28 +01:00
25 lines
350 B
YAML
Executable File
25 lines
350 B
YAML
Executable File
language: php
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
install:
|
|
- composer install
|
|
- composer require satooshi/php-coveralls:dev-master --dev --no-progress
|
|
|
|
before_script:
|
|
- mkdir -p build/logs
|
|
|
|
script:
|
|
- phpunit --coverage-clover build/logs/clover.xml
|
|
|
|
after_script:
|
|
- php vendor/bin/coveralls -v
|