Skip to content

Commit

Permalink
Disable automatic running of scripts in Composer during tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bennothommo committed Aug 14, 2020
1 parent c7ed0ff commit a6fca1e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a6fca1e

Please sign in to comment.