mirror of
https://github.com/danog/math.git
synced 2024-11-27 12:24:45 +01:00
23 lines
313 B
YAML
23 lines
313 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.6
|
|
- 7
|
|
- hhvm
|
|
|
|
env:
|
|
- CALCULATOR=GMP
|
|
- CALCULATOR=BCMath
|
|
- CALCULATOR=Native
|
|
|
|
before_script:
|
|
- composer self-update
|
|
- composer install
|
|
|
|
script:
|
|
- mkdir -p build/logs
|
|
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
|
|
|
|
after_script:
|
|
- vendor/bin/coveralls -v
|