From f6b6ff244d8018133454990778bc9f6d141a4291 Mon Sep 17 00:00:00 2001 From: Patrick Carlo-Hickman Date: Sat, 14 Dec 2024 11:14:30 -0500 Subject: [PATCH] wip --- .github/workflows/phpunit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 09fe19e..8fae680 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -72,8 +72,8 @@ jobs: - name: Run phpunit tests run: | FAIL_DEPRECATION="--fail-on-deprecation" - ( [[ "${{ matrix.php }}" == "8.4" ]] && ( [[ "${{ matrix.laravel }}" == "9.*" ]] || [[ "${{ matrix.laravel }}" != "10.*" ]] ) ) && FAIL_DEPRECATION="" - ./vendor/bin/phpunit $FAIL_DEPRECATION --coverage-clover ./clover.xml + ( [[ "${{ matrix.php }}" == "8.0" ]] || ( [[ "${{ matrix.php }}" == "8.4" ]] && ( [[ "${{ matrix.laravel }}" == "9.*" ]] || [[ "${{ matrix.laravel }}" == "10.*" ]] ) ) ) && FAIL_DEPRECATION="" + ./vendor/bin/phpunit ${FAIL_DEPRECATION} --coverage-clover ./clover.xml # Send the code coverage file regardless of the tests passing or failing. - name: Send coverage