Compare commits

...

1 Commits

Author SHA1 Message Date
44702ab10e feat: mise à jour task phpstan avec baseline 2024-04-02 09:59:19 +02:00

View File

@ -10,34 +10,11 @@ spec:
- name: apiurl - name: apiurl
- name: requestid - name: requestid
steps: steps:
- name: exec - name: analyse
image: ghcr.io/phpstan/phpstan:1 image: reg.cadoles.com/vcarroy/phpstan
command: script: |
- /bin/sh #!/bin/sh
args: echo "== RUN PHPSTAN ==========================================="
- '-c' cd $(workspaces.source.path)
- | phpstan analyse -l 5 --configuration phpstan-pipeline.neon --error-format table --no-progress > temp_phpstan.txt 2>&1
#set -e cat temp_phpstan.txt
echo ""
echo "== INSTALL PHPSTAN ======================================="
composer require phpstan/phpstan-symfony
composer require phpstan/phpstan-doctrine
cat << EOF > /app/phpstan.neon
includes:
- /app/vendor/phpstan/phpstan-symfony/extension.neon
- /app/vendor/phpstan/phpstan-doctrine/extension.neon
- /app/vendor/phpstan/phpstan-doctrine/rules.neon
EOF
echo ""
echo "== RUN PHPSTAN ==========================================="
cd $(workspaces.source.path)
php $(which phpstan) analyse -l 1 --error-format=table src/ > temp_phpstan.txt
RESULT=$(cat temp_phpstan.txt)
echo "${RESULT}"
echo ""
echo ""