Use no-scripts flag in tests

This commit is contained in:
DariusIII
2026-02-13 13:40:29 +01:00
parent 278c9ab23a
commit 2dda3bbb23
+6 -3
View File
@@ -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