attribute-spass/.drone.yml

27 lines
521 B
YAML
Raw Normal View History

2022-11-07 20:49:46 +00:00
kind: pipeline
type: docker
name: default
steps:
- name: install
2022-11-08 17:22:51 +00:00
image: git.php.fail/lubiana/container/php:81
2022-11-07 20:49:46 +00:00
commands:
- cd app
- composer install
- name: phpstan
2022-11-08 16:46:26 +00:00
image: git.php.fail/lubiana/container/php:81
2022-11-07 20:49:46 +00:00
commands:
- cd app
- php ./vendor/bin/phpstan analyze
depends_on:
- install
- name: ecs
2022-11-08 16:46:26 +00:00
image: git.php.fail/lubiana/container/php:81
2022-11-07 20:49:46 +00:00
commands:
- cd app
2022-11-07 20:52:34 +00:00
- php ./vendor/bin/ecs
2022-11-07 20:49:46 +00:00
depends_on:
- install