Skip to content

Commit 994eccc

Browse files
Use PHPUnit ^9.3 on PHP 8.0
1 parent e675e40 commit 994eccc

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/tests.yml

+8
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ jobs:
3535
command: composer update --no-interaction --no-progress
3636
if: "matrix.php < 8"
3737

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+
3846
- name: Install PHP 8 Dependencies
3947
uses: nick-invision/retry@v1
4048
with:

composer.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,7 @@
3737
"branch-alias": {
3838
"dev-master": "1.7-dev"
3939
}
40-
}
40+
},
41+
"minimum-stability": "dev",
42+
"prefer-stable": true
4143
}

0 commit comments

Comments
 (0)