From 2ac9b046b51f0670300aae3058213130b1189c0b Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Fri, 18 Apr 2025 19:46:27 +0100 Subject: [PATCH] Build: Force clean checkout in CI --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c841c00..b6df7b4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,6 +18,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + clean: 'true' - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -45,6 +47,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + clean: 'true' - name: Setup PHP uses: shivammathur/setup-php@v2