From 0240570410cfc8a9460415ca820bc75514e70fdf Mon Sep 17 00:00:00 2001 From: DariusIII Date: Fri, 13 Feb 2026 13:35:25 +0100 Subject: [PATCH] Update test --- .github/workflows/laravel.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 07afaa8b8..82ef3b464 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.3, 8.4 ] + php: [ 8.4, 8.5 ] name: PHP ${{ matrix.php }} services: @@ -30,7 +30,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, pdo_mysql coverage: none - name: Copy env file @@ -43,5 +43,8 @@ jobs: - name: Generate app key run: php artisan key:generate + - name: Run database migrations + run: php artisan migrate --force + - name: Run tests run: vendor/bin/phpunit