Check for github

This commit is contained in:
James Cole 2023-11-04 12:14:10 +01:00
parent 94b0028254
commit 08c07352ae
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80

View File

@ -29,16 +29,17 @@ SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
# cp .ci/.env.ci .env
# Do static code analysis.
# ./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress
./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress --error-format=table > phpstan-report.txt
EXIT_CODE=$?
if [[ $GITHUB_ACTIONS = "" ]]
then
./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'
exit $EXIT_CODE
if [[ $GITHUB_ACTIONS = "true" ]]
then
./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress --error-format=github > phpstan-report.txt
EXIT_CODE=$?
cat phpstan-report.txt
fi
cat phpstan-report.txt
exit $EXIT_CODE