diff --git a/.ci/phpstan.sh b/.ci/phpstan.sh index 6d11094b0a..1b1a74af2a 100755 --- a/.ci/phpstan.sh +++ b/.ci/phpstan.sh @@ -30,6 +30,14 @@ SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) # Do static code analysis. # ./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress -./vendor/bin/phpstan analyse -c .ci/phpstan.neon --error-format=table > phpstan-report.txt +./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress --error-format=table > phpstan-report.txt +EXIT_CODE=$? -echo 'The PHPstan report can be found in phpstan-report.txt' +if [ $GITHUB_ACTIONS -ne "true" ]; then + echo 'The PHPstan report can be found in phpstan-report.txt' + exit $EXIT_CODE +fi + +cat phpstan-report.txt + +exit $EXIT_CODE