File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 45
45
- 7.4
46
46
- 8.0
47
47
- 8.1
48
+ - 8.2
49
+ - 8.3
48
50
dependencies_level :
49
51
- --prefer-lowest
50
52
- " "
@@ -74,15 +76,15 @@ jobs:
74
76
key : " cache-composer-${{ hashFiles('composer.json') }}"
75
77
restore-keys : ' cache-composer-'
76
78
- name : Run composer
77
- if : ${{ matrix.php_version != '8.0' && matrix.php_version != '8.1' }}
79
+ if : ${{ matrix.php_version != '8.0' && matrix.php_version != '8.1' && matrix.php_version != '8.2' && matrix.php_version != '8.3' }}
78
80
run : composer update ${{ matrix.dependencies_level }} --prefer-dist --no-interaction --no-progress
79
81
- name : Run composer with workaround for PHP 8 and incompatible PHPUnit
80
- if : ${{ matrix.php_version == '8.0' || matrix.php_version == '8.1' }}
82
+ if : ${{ matrix.php_version == '8.0' || matrix.php_version == '8.1' || matrix.php_version == '8.2' || matrix.php_version == '8.3' }}
81
83
run : composer update ${{ matrix.dependencies_level }} --ignore-platform-reqs --prefer-dist --no-interaction --no-progress
82
84
- name : Check composer.json
83
85
run : composer normalize --dry-run
84
86
- name : Run tests with coverage
85
- if : ${{ matrix.php_version != '8.0' && matrix.php_version != '8.1' }}
87
+ if : ${{ matrix.php_version != '8.0' && matrix.php_version != '8.1' && matrix.php_version != '8.2' && matrix.php_version != '8.3' }}
86
88
run : php vendor/bin/phpunit --coverage-clover=coverage.xml
87
89
- name : Run tests
88
90
if : ${{ matrix.php_version == '8.0' }}
You can’t perform that action at this time.
0 commit comments