From 4e346e4fa0ea75c79a5c08edca6a1da8775c5d47 Mon Sep 17 00:00:00 2001 From: Greg Sarjeant <1686767+gsarjeant@users.noreply.github.com> Date: Tue, 1 Jul 2025 19:16:06 -0400 Subject: [PATCH] Attempt to actually run unit tests. --- .gitea/workflows/unit_tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/unit_tests.yaml b/.gitea/workflows/unit_tests.yaml index 5e8f1b7..0e9cf9c 100644 --- a/.gitea/workflows/unit_tests.yaml +++ b/.gitea/workflows/unit_tests.yaml @@ -6,12 +6,12 @@ jobs: run-unit-tests: runs-on: ubuntu-latest container: - image: "${{ secrets.CONTAINER_REGISTRY_URL}}/${{ secrets.CONTAINER_REGISTRY_USERNAME}}/php8.4-test-runner:0.0.2" + image: "${{ secrets.CONTAINER_REGISTRY_URL}}/${{ secrets.CONTAINER_REGISTRY_USERNAME}}/php8.4-test-runner:0.0.3" credentials: username: "${{ secrets.CONTAINER_REGISTRY_USERNAME }}" password: "${{ secrets.CONTAINER_REGISTRY_TOKEN }}" steps: - uses: actions/checkout@v2 - - name: Get directory contents - run: ls \ No newline at end of file + - name: Run unit tests + run: /test/phpunit --bootstrap contig/bootstrap.php --testdox tests \ No newline at end of file