Browse Source

Ensure psalm and phpstan are run even if previous steps fail

ADmad 5 years ago
parent
commit
be2bdf7a23
1 changed files with 2 additions and 0 deletions
  1. 2 0
      .github/workflows/ci.yml

+ 2 - 0
.github/workflows/ci.yml

@@ -224,7 +224,9 @@ jobs:
       run: vendor/bin/phpcs --report=checkstyle src/ tests/
 
     - name: Run psalm
+      if: success() || failure()
       run: vendor/bin/psalm.phar --output-format=github
 
     - name: Run phpstan
+      if: success() || failure()
       run: vendor/bin/phpstan.phar analyse --error-format=github