Skip to content

Commit

Permalink
Fix: Explicitly run commands through PHP binary
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jun 28, 2020
1 parent 9a4052f commit 1e0d2f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,17 @@ jobs:
- name: Install lowest dependencies with composer
if: matrix.dependencies == 'lowest'
run: ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest
run: php ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest

- name: Install highest dependencies with composer
if: matrix.dependencies == 'highest'
run: ./tools/composer update --no-ansi --no-interaction --no-progress
run: php ./tools/composer update --no-ansi --no-interaction --no-progress

- name: Run sanity check
run: bash ./build/scripts/sanity-check

- name: Run tests with phpunit
run: ./phpunit --coverage-clover=coverage.xml
run: php ./phpunit --coverage-clover=coverage.xml

- name: Send code coverage report to Codecov.io
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit 1e0d2f6

Please sign in to comment.