Skip to content

Commit a9d2cd2

Browse files
Install PHP 8.1 dependencies ignoring php req
1 parent a3b4718 commit a9d2cd2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ jobs:
3333
timeout_minutes: 5
3434
max_attempts: 5
3535
command: composer update --no-interaction --no-progress
36+
if: "matrix.php < 8.1"
37+
38+
- name: Install PHP 8.1 Dependencies
39+
uses: nick-invision/retry@v1
40+
with:
41+
timeout_minutes: 5
42+
max_attempts: 5
43+
command: composer update --no-interaction --no-progress --ignore-platform-req=php
44+
if: "matrix.php >= 8.1"
3645

3746
- name: Execute PHPUnit
3847
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)