correct composer exec path

This commit is contained in:
DeveloperMarius
2021-03-23 13:27:18 +01:00
parent 824ee86652
commit d3000775d6

View File

@@ -62,10 +62,10 @@ jobs:
php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
- name: Install lowest dependencies with composer
if: matrix.dependencies == 'lowest'
run: php ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest
run: php composer update --no-ansi --no-interaction --no-progress --prefer-lowest
- name: Install highest dependencies with composer
if: matrix.dependencies == 'highest'
run: php ./tools/composer update --no-ansi --no-interaction --no-progress
run: php composer update --no-ansi --no-interaction --no-progress
# - name: Install dependencies
# run: composer install --prefer-dist
- name: Run tests with phpunit