From 2dda3bbb23e4007b4b566f8d0283315a30290590 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Fri, 13 Feb 2026 13:40:29 +0100 Subject: [PATCH] Use no-scripts flag in tests --- .github/workflows/laravel.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 14f834e25..c5384e48c 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.4, 8.5 ] + php: [ 8.5 ] name: PHP ${{ matrix.php }} services: @@ -38,13 +38,16 @@ jobs: cp .env.test .env - name: Run composer update - run: composer update --prefer-dist --no-interaction --no-progress + run: composer update --prefer-dist --no-interaction --no-progress --no-scripts - name: Generate app key - run: php artisan key:generate + run: php artisan key:generate --no-interaction - name: Run database migrations run: php artisan migrate --force + - name: Run package discovery + run: php artisan package:discover --ansi + - name: Run tests run: vendor/bin/phpunit