From 5c6de3f1958096fa045524fbc5fca5fc43b4825d Mon Sep 17 00:00:00 2001 From: myrmidex Date: Sat, 6 Jun 2026 07:58:31 +0000 Subject: [PATCH] Fix static analysis CI step error --- .forgejo/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 5e4089f..a591bef 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -61,7 +61,11 @@ jobs: php bin/console lint:yaml config/ - name: Static analysis - run: vendor/bin/phpstan analyse --memory-limit=1G -c phpstan.dist.neon + run: | + echo "PWD: $(pwd)" + echo "WORKSPACE: ${{ github.workspace }}" + find / -name "phpstan.dist.neon" 2>/dev/null | head -5 + vendor/bin/phpstan analyse --memory-limit=1G -c phpstan.dist.neon - name: Create and migrate test database env: