24 lines
367 B
YAML
24 lines
367 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: install
|
|
image: composer
|
|
commands:
|
|
- composer install
|
|
|
|
- name: phpstan
|
|
image: php:8
|
|
commands:
|
|
- vendor/bin/phpstan analyse
|
|
|
|
- name: phpunit
|
|
image: php:8
|
|
commands:
|
|
- vendor/bin/phpunit
|
|
|
|
- name: style check
|
|
image: php:8
|
|
commands:
|
|
- PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix |