mirror of
https://github.com/danog/math.git
synced 2025-01-22 21:51:22 +01:00
fd4feef6ce
This command is not mandatory and is responsible of too many build errors.
22 lines
288 B
YAML
22 lines
288 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.6
|
|
- 7
|
|
- hhvm
|
|
|
|
env:
|
|
- CALCULATOR=GMP
|
|
- CALCULATOR=BCMath
|
|
- CALCULATOR=Native
|
|
|
|
before_script:
|
|
- composer install
|
|
|
|
script:
|
|
- mkdir -p build/logs
|
|
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
|
|
|
|
after_script:
|
|
- vendor/bin/coveralls -v
|