From 93bb473bceb3f4c6450f3101fa82a17dc84cf388 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 21 Oct 2023 10:02:49 +0300 Subject: make phpstan happy, run phpstan on all files on task startup --- utils/phpstan-watcher.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'utils') diff --git a/utils/phpstan-watcher.sh b/utils/phpstan-watcher.sh index 70eb1d9ab..1972df049 100644 --- a/utils/phpstan-watcher.sh +++ b/utils/phpstan-watcher.sh @@ -1,5 +1,9 @@ #!/bin/sh +docker run --rm -v $(pwd):/app -v /tmp/phpstan-8.1:/tmp/phpstan \ + --workdir /app registry.fakecake.org/ci/php8.2-alpine:3.18 php82 -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G --error-format=raw analyze . +echo All done, RC=$?. + while true; do inotifywait . -e close_write -r -t 300 | grep -q .php && \ ( -- cgit v1.2.3