Skip to content

Commit e2b6957

Browse files
committed
Fixes tests
1 parent 7020dfb commit e2b6957

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,16 @@ jobs:
2121
steps:
2222
- name: Checkout changes
2323
uses: actions/checkout@v1
24+
2425
- name: Install PHP
2526
uses: shivammathur/setup-php@master
2627
with:
2728
php-version: ${{ matrix.phpVersions }}
29+
2830
- name: Install Composer dependencies
29-
run: composer install --no-interaction --no-progress --no-suggest --no-scripts
31+
run: |
32+
composer install --no-interaction --no-progress --no-suggest --no-scripts
33+
composer config --no-interaction allow-plugins.composer/installers true
34+
3035
- name: Run Tests
3136
run: ./vendor/bin/phpunit ./tests

0 commit comments

Comments
 (0)