File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,12 @@ jobs:
1515 strategy :
1616 fail-fast : false
1717 matrix :
18- php-version : ['7.2', '7.4', ' 8.0']
18+ php-version : ['7.2', '8.0']
1919 db-type : [mysql, pgsql, sqlite]
2020 prefer-lowest : ['']
2121 include :
22+ - php-version : ' 8.1'
23+ db-type : ' sqlite'
2224 - php-version : ' 7.2'
2325 db-type : ' sqlite'
2426 prefer-lowest : ' prefer-lowest'
@@ -63,12 +65,12 @@ jobs:
6365
6466 - name : Composer install
6567 run : |
66- if [[ ${{ matrix.php-version }} == '8.0' ]]; then
67- composer install --ignore-platform-reqs
68- elif ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then
68+ if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then
6969 composer update --prefer-lowest --prefer-stable
70+ elif ${{ matrix.php-version == '8.1' }}; then
71+ composer update --ignore-platform-reqs
7072 else
71- composer install
73+ composer update
7274 fi
7375
7476 - name : Run PHPUnit
You can’t perform that action at this time.
0 commit comments