From eb0a3860ff450867ff470c4a5494fbbe82aba36c Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Mon, 16 Mar 2026 20:11:11 +0000 Subject: [PATCH] fix: re-enable PHPUnit test step in tests.yml Tests were commented out in PR #10. PHPUnit test files exist in tests/phpunit/ and phpunit.xml is configured. Re-enabling the step so tests actually run in CI. Closes #45 --- .github/workflows/tests.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2cad503..33eec54 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,11 +34,8 @@ 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 + - name: Run tests + run: ./vendor/bin/phpunit code-style: name: Code Style