From 45ea239d7ccab0e958857698afbaa21bbeff308a Mon Sep 17 00:00:00 2001 From: Jens True Date: Thu, 1 Jun 2023 09:22:23 +0000 Subject: [PATCH] Perform analysis --- .woodpecker.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 286a377..52e6d04 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -11,4 +11,12 @@ pipeline: image: composer commands: - composer install - - ./vendor/bin/phpunit tests \ No newline at end of file + - ./vendor/bin/phpunit tests + analyze: + image: php + commands: + - ./vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode + - ./vendor/bin/phpstan analyze --level=7 src/ backup + - ./vendor/bin/psalm + - ./vendor/bin/phpcs src + failure: ignore \ No newline at end of file