We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 308a7ac commit 1c67d79Copy full SHA for 1c67d79
1 file changed
.github/workflows/build.yml
@@ -35,14 +35,12 @@ jobs:
35
run: composer validate
36
37
- name: Install dependencies for PHP 7
38
+ if: matrix.php-versions < '8.0'
39
run: composer update --prefer-dist --no-progress
- with:
40
- php-version: [ '7.2', '7.3', '7.4' ]
41
42
- name: Install dependencies for PHP 8
+ if: matrix.php-versions >= '8.0'
43
run: composer update --prefer-dist --no-progress --ignore-platform-reqs
44
45
- php-version: [ '8.0' ]
46
47
- name: Run test suite
48
run: composer check
0 commit comments