Add '.drone.yml'
Some checks reported errors
continuous-integration/drone Build was killed

This commit is contained in:
trizz 2022-08-05 13:34:35 +02:00
parent d24a3956ee
commit 8897eca422

23
.drone.yml Normal file
View File

@ -0,0 +1,23 @@
kind: 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