14 lines
217 B
YAML
14 lines
217 B
YAML
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: install
|
||
|
image: composer
|
||
|
commands:
|
||
|
- composer install
|
||
|
|
||
|
- name: test
|
||
|
image: php:8.1
|
||
|
commands:
|
||
|
- vendor/bin/phpunit --configuration config.xml
|