From 02be49246d1cc80276908e7d0aa27472f24acd32 Mon Sep 17 00:00:00 2001 From: Alexey Kavshirko Date: Tue, 9 Apr 2024 13:48:06 +0300 Subject: [PATCH] Fix tests --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b4c52d7..3ffa746 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,8 +11,8 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2] - laravel: [^8.0, ^9.0, ^10.0] + php: [8.1, 8.2, 8.3] + laravel: [^8.0, ^9.0, ^10.0, ^11.0] name: Run Test (P${{ matrix.php }} - L${{ matrix.laravel }}) @@ -33,7 +33,7 @@ jobs: composer require "illuminate/database=${{ matrix.laravel }}" --no-update composer update --prefer-dist --no-interaction --no-progress - name: Execute tests - run: vendor/bin/phpunit --verbose --testdox + run: vendor/bin/phpunit --testdox - name: Upload artifacts (on failure) uses: actions/upload-artifact@master