Skip to content

Commit 66e161f

Browse files
committed
Add PHP 8.2, skip gearman too
1 parent 428e878 commit 66e161f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
strategy:
7878
fail-fast: false
7979
matrix:
80-
php: ['7.4', '8.0', '8.1']
80+
php: ['7.4', '8.0', '8.1', '8.2']
8181
symfony_version: ['5.4.*', '6.2.*']
8282
dependencies: ['--prefer-lowest', '--prefer-dist']
8383
exclude:
@@ -123,7 +123,7 @@ jobs:
123123
strategy:
124124
fail-fast: false
125125
matrix:
126-
php: ['7.4', '8.0', '8.1'] # same as in the container
126+
php: ['7.4', '8.0', '8.1', '8.2'] # same as in the container
127127
symfony_version: ['5.4.*', '6.2.*']
128128
dependencies: ['--prefer-lowest', '--prefer-dist']
129129
exclude:
@@ -169,7 +169,7 @@ jobs:
169169
# TODO: convert these two steps into one w/o excludes when Gearman extension gets a release for PHP 8.1
170170
# See https://github.com/php/pecl-networking-gearman/issues/16
171171
- run: bin/test.sh
172-
if: ${{ matrix.php != '8.1' }}
172+
if: ${{ matrix.php != '8.1' && matrix.php != '8.2' }}
173173

174174
- run: bin/test.sh --exclude-group=gearman
175-
if: ${{ matrix.php == '8.1' }}
175+
if: ${{ matrix.php == '8.1' && matrix.php != '8.2' }}

0 commit comments

Comments
 (0)