Experiment

This commit is contained in:
MarkBaker 2020-07-25 23:17:26 +02:00
parent fe121e8f7a
commit 16a9ff14d4
3 changed files with 6 additions and 2 deletions

View File

@ -17,7 +17,7 @@ before_script:
- composer install --ignore-platform-reqs - composer install --ignore-platform-reqs
script: script:
- ./vendor/bin/phpunit - ./vendor/bin/phpunit --color=always --coverage-text
jobs: jobs:
include: include:

View File

@ -28,7 +28,7 @@
"scripts": { "scripts": {
"check": [ "check": [
"php-cs-fixer fix --ansi --dry-run --diff", "php-cs-fixer fix --ansi --dry-run --diff",
"phpcs --report-width=200 samples/ src/ tests/ --ignore=samples/Header.php --standard=PSR2 -n", "phpcs --report-width=200 samples/ src/ tests/ --ignore=samples/Header.php --standard=PSR12 -n",
"phpunit --color=always" "phpunit --color=always"
], ],
"fix": [ "fix": [

View File

@ -37,4 +37,8 @@ return [
'#VALUE!', '#VALUE!',
'NAN', 3, 'NAN', 3,
], ],
[
'#NUM!',
-8, 3,
],
]; ];