We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e675e40 commit 994ecccCopy full SHA for 994eccc
.github/workflows/tests.yml
@@ -35,6 +35,14 @@ jobs:
35
command: composer update --no-interaction --no-progress
36
if: "matrix.php < 8"
37
38
+ - name: Setup PHP 8 Dependencies
39
+ uses: nick-invision/retry@v1
40
+ with:
41
+ timeout_minutes: 5
42
+ max_attempts: 5
43
+ command: composer require "phpunit/phpunit:^9.3" --no-interaction --no-update
44
+ if: "matrix.php >= 8"
45
+
46
- name: Install PHP 8 Dependencies
47
uses: nick-invision/retry@v1
48
with:
composer.json
@@ -37,5 +37,7 @@
"branch-alias": {
"dev-master": "1.7-dev"
}
- }
+ },
+ "minimum-stability": "dev",
+ "prefer-stable": true
0 commit comments