2020-05-15 16:53:23 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: test
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: composer
|
|
|
|
image: composer:latest
|
|
|
|
commands:
|
|
|
|
- composer install
|
|
|
|
|
2021-11-24 16:49:20 +00:00
|
|
|
- name: php74test
|
|
|
|
image: registry.i15.nl/i15/fuzephp:7.4-alpine
|
2020-05-15 16:53:23 +00:00
|
|
|
commands:
|
2021-11-24 16:49:20 +00:00
|
|
|
- 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
|
2020-05-15 16:53:23 +00:00
|
|
|
- vendor/bin/phpunit -c test/phpunit.xml
|
|
|
|
|
|
|
|
- name: coverage
|
2021-11-24 16:49:20 +00:00
|
|
|
image: registry.i15.nl/i15/fuzephp:8.0-alpine
|
2020-05-15 16:53:23 +00:00
|
|
|
commands:
|
2021-11-24 16:49:20 +00:00
|
|
|
- docker-php-ext-enable xdebug
|
|
|
|
- vendor/bin/phpunit -c test/phpunit.xml --coverage-text
|
|
|
|
|
|
|
|
image_pull_secrets:
|
|
|
|
- dockerconfig
|