Disable automatic running of scripts in Composer during tests

This commit is contained in:
Ben Thomson 2020-08-14 08:26:23 +08:00
parent c7ed0ffa1a
commit a6fca1e317
No known key found for this signature in database
GPG Key ID: E2B9C73B52D15AA0
1 changed files with 6 additions and 1 deletions

View File

@ -77,7 +77,12 @@ jobs:
restore-keys: ${{ runner.os }}-composer-
- name: Install Composer dependencies
run: composer install --no-interaction --no-progress --no-suggest
run: composer install --no-interaction --no-progress --no-suggest --no-scripts
- name: Reset October modules
run: |
git reset --hard HEAD
composer dumpautoload
- name: Run post-update Composer scripts
run: php artisan package:discover