From 2e9914e325eac18f14f3dac467ed46426648e308 Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Fri, 18 Apr 2025 19:39:51 +0100 Subject: [PATCH] Build: Add debug step to print test file content in CI --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3cbada9..c841c00 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,6 +32,9 @@ jobs: - name: Install dependencies run: composer install --prefer-dist --no-progress + - name: Debug test file content + run: echo "--- Debugging tests/test-admin.php lines 75-95 ---" && sed -n '75,95p' tests/test-admin.php && echo "--- End Debugging ---" + - name: Run tests run: ./vendor/bin/phpunit