From fcb2f632a1e8076ddfe57b2b9a7df88572f3100c Mon Sep 17 00:00:00 2001 From: Taras Omelianchuk Date: Mon, 22 Sep 2025 19:28:16 +0300 Subject: [PATCH] ci: Disable Xdebug for PHPUnit to resolve dynamic property error --- .github/workflows/phpunit.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index b04aaa6d..8ff67292 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -10,6 +10,8 @@ jobs: build: runs-on: ubuntu-latest + env: + XDEBUG_MODE: off steps: - uses: actions/checkout@v2