Skip to content

Commit

Permalink
Install PHP 8.1 dependencies ignoring php req
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Dec 3, 2020
1 parent a3b4718 commit a9d2cd2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ jobs:
timeout_minutes: 5
max_attempts: 5
command: composer update --no-interaction --no-progress
if: "matrix.php < 8.1"

- name: Install PHP 8.1 Dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer update --no-interaction --no-progress --ignore-platform-req=php
if: "matrix.php >= 8.1"

- name: Execute PHPUnit
run: vendor/bin/phpunit
Expand Down

0 comments on commit a9d2cd2

Please sign in to comment.