attribute-spass/.drone.yml

27 lines
468 B
YAML
Raw Normal View History

2022-11-07 20:49:46 +00:00
kind: pipeline
type: docker
name: default
steps:
- name: install
image: composer
commands:
- cd app
- composer install
- name: phpstan
image: ghcr.io/phpstan/phpstan:1-php8.1
commands:
- cd app
- php ./vendor/bin/phpstan analyze
depends_on:
- install
- name: ecs
image: php:8.1-cli-alpine
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