We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7020dfb commit e2b6957Copy full SHA for e2b6957
.github/workflows/tests.yml
@@ -21,11 +21,16 @@ jobs:
21
steps:
22
- name: Checkout changes
23
uses: actions/checkout@v1
24
+
25
- name: Install PHP
26
uses: shivammathur/setup-php@master
27
with:
28
php-version: ${{ matrix.phpVersions }}
29
30
- name: Install Composer dependencies
- 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
35
- name: Run Tests
36
run: ./vendor/bin/phpunit ./tests
0 commit comments