Abel Hoogeveen
0b0f4998b4
- Dropped support for PHP 7.4 and 8.0. - Updated shutdown to no longer halt execution on an error if logger error handlers are disabled. - Logger::enable() and ::disable() now control the screen log, as it used to in the old days.
24 lines
522 B
YAML
24 lines
522 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: test
|
|
|
|
steps:
|
|
- name: composer
|
|
image: composer:latest
|
|
commands:
|
|
- composer install
|
|
|
|
- name: php81test
|
|
image: registry.i15.nl/i15/fuzephp:8.1-alpine
|
|
commands:
|
|
- docker-php-ext-enable xdebug
|
|
- vendor/bin/phpunit -c test/phpunit.xml
|
|
|
|
- name: coverage
|
|
image: registry.i15.nl/i15/fuzephp:8.1-alpine
|
|
commands:
|
|
- docker-php-ext-enable xdebug
|
|
- vendor/bin/phpunit -c test/phpunit.xml --coverage-text
|
|
|
|
image_pull_secrets:
|
|
- dockerconfig |