From 69e7962b6b720ee052e5058105eb72ab4abc76cd Mon Sep 17 00:00:00 2001 From: Jens True Date: Thu, 1 Jun 2023 09:42:42 +0000 Subject: [PATCH] Ignore results of analysis --- .woodpecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index e8904c7..470e4e9 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -15,7 +15,7 @@ pipeline: tools: 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 \ No newline at end of file + - !./vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode || exit 0 + - !./vendor/bin/phpstan analyze --level=7 src/ backup || exit 0 + - !./vendor/bin/psalm || exit 0 + - !./vendor/bin/phpcs src || exit 0 \ No newline at end of file