Skip to content

Commit bf173c8

Browse files
authored
Add PHP 8.2 to the CI (#199)
1 parent 578c646 commit bf173c8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ on:
99
jobs:
1010
tests:
1111
runs-on: "ubuntu-latest"
12-
name: "Test ${{ matrix.php }}"
12+
name: "Tests (PHP ${{ matrix.php }})"
1313
strategy:
1414
fail-fast: false
1515
matrix:
1616
php:
1717
- "7.4"
1818
- "8.0"
1919
- "8.1"
20+
- "8.2"
2021

2122
steps:
2223
- name: "Check out repository code"
@@ -36,7 +37,7 @@ jobs:
3637

3738
symfony-version:
3839
runs-on: "ubuntu-latest"
39-
name: "Test ${{ matrix.config.php }} with Symfony ${{ matrix.config.symfony_version }}"
40+
name: "Tests (PHP ${{ matrix.config.php }}) with Symfony ${{ matrix.config.symfony_version }}"
4041
strategy:
4142
fail-fast: false
4243
matrix:
@@ -77,12 +78,12 @@ jobs:
7778

7879
infection:
7980
runs-on: "ubuntu-latest"
80-
name: "Infection ${{ matrix.php }}"
81+
name: "Infection (PHP ${{ matrix.php }})"
8182
strategy:
8283
fail-fast: false
8384
matrix:
8485
php:
85-
- "8.1"
86+
- "8.2"
8687

8788
steps:
8889
- name: "Check out repository code"

.github/workflows/lint.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88
jobs:
99
tests:
1010
runs-on: ubuntu-latest
11-
name: Lint ${{ matrix.check.name }}
11+
name: "${{ matrix.check.name }} (PHP ${{ matrix.check.php }})"
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [ '8.1' ]
15+
php: [ '8.2' ]
1616
check:
1717
- name: PHPStan
1818
command: make phpstan

0 commit comments

Comments
 (0)