Skip to content

Commit 87ca7c7

Browse files
committed
Test against PHP 8.2
Signed-off-by: Matthew Peveler <[email protected]>
1 parent 92545e1 commit 87ca7c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
php-version: ['7.2', '7.4', '8.0', '8.1']
17+
php-version: ['7.2', '7.4', '8.0', '8.1', '8.2']
1818
db-type: [sqlite, mysql, pgsql]
1919
prefer-lowest: ['']
2020
include:
@@ -98,7 +98,7 @@ jobs:
9898
if [[ ${{ matrix.db-type }} == 'mysql' ]]; then export MYSQL_DSN='mysql://root:[email protected]/phinx'; fi
9999
if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then export PGSQL_DSN='pgsql://postgres:[email protected]/phinx'; fi
100100
101-
if [[ ${{ matrix.php-version }} == '8.1' ]]; then
101+
if [[ ${{ matrix.php-version }} == '8.2' ]]; then
102102
export CODECOVERAGE=1 && vendor/bin/phpunit --verbose --coverage-clover=coverage.xml
103103
else
104104
vendor/bin/phpunit
@@ -109,16 +109,16 @@ jobs:
109109
run: composer require --dev dereuromark/composer-prefer-lowest && vendor/bin/validate-prefer-lowest -m
110110

111111
- name: Submit code coverage
112-
if: matrix.php-version == '8.1'
112+
if: matrix.php-version == '8.2'
113113
uses: codecov/codecov-action@v3
114114

115115
testsuite-windows:
116116
runs-on: windows-2019
117-
name: Windows - PHP 8.1 & SQL Server
117+
name: Windows - PHP 7.2 & SQL Server
118118

119119
env:
120120
EXTENSIONS: pdo_sqlsrv
121-
PHP_VERSION: '8.1'
121+
PHP_VERSION: '7.2'
122122

123123
steps:
124124
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)