@@ -74,10 +74,10 @@ jobs:
7474 tools : none
7575
7676 - name : Install dependencies with composer
77- run : php ./tools/composer update --no-ansi --no-interaction --no-progress
77+ run : ./tools/composer update --no-ansi --no-interaction --no-progress
7878
7979 - name : Generate global assert wrappers
80- run : php build/scripts/generate-global-assert-wrappers.php
80+ run : ./ build/scripts/generate-global-assert-wrappers.php
8181
8282 - name : Assert that git tree is clean
8383 run : git diff || echo "Run 'php build/scripts/generate-global-assert-wrappers.php' to regenerate global assert wrappers!"
@@ -151,11 +151,11 @@ jobs:
151151
152152 - name : Install lowest dependencies with composer
153153 if : matrix.dependencies == 'lowest'
154- run : php ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest
154+ run : ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest
155155
156156 - name : Install highest dependencies with composer
157157 if : matrix.dependencies == 'highest'
158- run : php ./tools/composer update --no-ansi --no-interaction --no-progress
158+ run : ./tools/composer update --no-ansi --no-interaction --no-progress
159159
160160 - name : Run tests with phpunit
161161 run : ./phpunit --testsuite unit
@@ -232,11 +232,11 @@ jobs:
232232
233233 - name : Install lowest dependencies with composer
234234 if : matrix.dependencies == 'lowest'
235- run : php ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest
235+ run : ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest
236236
237237 - name : Install highest dependencies with composer
238238 if : matrix.dependencies == 'highest'
239- run : php ./tools/composer update --no-ansi --no-interaction --no-progress
239+ run : ./tools/composer update --no-ansi --no-interaction --no-progress
240240
241241 - name : Run tests with phpunit
242242 run : ./phpunit --testsuite end-to-end
@@ -263,10 +263,10 @@ jobs:
263263 tools : none
264264
265265 - name : Install dependencies with composer
266- run : php ./tools/composer update --no-ansi --no-interaction --no-progress
266+ run : ./tools/composer update --no-ansi --no-interaction --no-progress
267267
268268 - name : Collect code coverage with phpunit
269- run : php ./phpunit --coverage-clover=coverage.xml
269+ run : ./phpunit --coverage-clover=coverage.xml
270270
271271 - name : Send code coverage report to Codecov.io
272272 uses : codecov/codecov-action@v2
0 commit comments