From 5cdfedac726dc9615bf1a5d590998d9acf0a3769 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Wed, 13 Nov 2024 19:16:54 +0800 Subject: [PATCH] wip --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 675f961..a1696a3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -75,5 +75,10 @@ jobs: composer require --no-update composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts=^${{ matrix.laravel }}" + - name: Execute tests (display deprecations) + run: vendor/bin/phpunit --display-deprecations --fail-on-deprecation + if: matrix.laravel >= 10 + - name: Execute tests run: vendor/bin/phpunit + if: matrix.laravel < 10