Updated drone to perform tests for PHP 7.4 and 8.0.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Abel Hoogeveen 2021-11-24 17:49:20 +01:00
parent 8ce3630714
commit 32420e4681
Signed by: abelhooge
GPG Key ID: C540221690CBFFBA
1 changed files with 15 additions and 4 deletions

View File

@ -8,12 +8,23 @@ steps:
commands:
- composer install
- name: phpunit
image: phpunit:7.3
- name: php74test
image: registry.i15.nl/i15/fuzephp:7.4-alpine
commands:
- docker-php-ext-enable xdebug
- vendor/bin/phpunit -c test/phpunit.xml
- name: php80test
image: registry.i15.nl/i15/fuzephp:8.0-alpine
commands:
- docker-php-ext-enable xdebug
- vendor/bin/phpunit -c test/phpunit.xml
- name: coverage
image: phpunit:7.3
image: registry.i15.nl/i15/fuzephp:8.0-alpine
commands:
- vendor/bin/phpunit -c test/phpunit.xml --coverage-text
- docker-php-ext-enable xdebug
- vendor/bin/phpunit -c test/phpunit.xml --coverage-text
image_pull_secrets:
- dockerconfig