Run code style and coverage with PHP 7.4

This commit is contained in:
Adrien Crivelli 2020-04-27 18:33:44 +09:00
parent 4e6d6838e0
commit 8ea48ecb40
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 2 additions and 2 deletions

View File

@ -24,13 +24,13 @@ jobs:
include:
- stage: Code style
php: 7.2
php: 7.4
script:
- ./vendor/bin/php-cs-fixer fix --diff --verbose --dry-run
- ./vendor/bin/phpcs --report-width=200 samples/ src/ tests/ --ignore=samples/Header.php --standard=PSR2 -n
- stage: Coverage
php: 7.2
php: 7.4
script:
- pecl install pcov
- composer require pcov/clobber --dev