Skip to content

Commit

Permalink
fix: update workflows to support PHP <= 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bepsvpt committed Mar 17, 2024
1 parent 02fd6de commit 4be9615
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,11 @@ jobs:
if: ${{ contains(fromJSON('["5.4.0", "5.3.0", "5.2.0", "5.1.0"]'), matrix.laravel) }}
run: composer require --dev --no-update phpunit/phpunit:~5.7

- name: Install dependencies with specific Laravel version
run: composer update --with illuminate/support:~${{ matrix.laravel }} --no-progress --no-interaction
- name: Add illuminate/support to restrict Laravel testing version
run: composer require --no-update illuminate/support:~${{ matrix.laravel }}

- name: Install dependencies
run: composer update --no-progress --no-interaction

- name: Run tests
run: vendor/bin/phpunit

0 comments on commit 4be9615

Please sign in to comment.