Skip to content

Commit 5b68721

Browse files
authored
Merge pull request #364 from norkunas/ci
Update CI to run with PHP 8.4
2 parents 9b25dfc + 1286c60 commit 5b68721

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/pre-release-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
MEILI_NO_ANALYTICS: true
4040
strategy:
4141
matrix:
42-
php-version: ['7.4', '8.1', '8.2', '8.3']
42+
php-version: ['7.4', '8.1', '8.2', '8.3', '8.4']
4343
sf-version: ['5.4', '6.4', '7.0', '7.1']
4444
exclude:
4545
- php-version: '7.4'
@@ -58,7 +58,7 @@ jobs:
5858
sf-version: '5.4'
5959
- php-version: '8.3'
6060
sf-version: '5.4'
61-
- php-version: '8.3'
61+
- php-version: '8.4'
6262
sf-version: '5.4'
6363

6464
name: integration-tests-against-rc (PHP ${{ matrix.php-version }}) (Symfony ${{ matrix.sf-version }}.*)

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
MEILI_NO_ANALYTICS: true
2929
strategy:
3030
matrix:
31-
php-version: ['7.4', '8.1', '8.2', '8.3']
31+
php-version: ['7.4', '8.1', '8.2', '8.3', '8.4']
3232
sf-version: ['5.4', '6.4', '7.0', '7.1']
3333
exclude:
3434
- php-version: '7.4'
@@ -47,7 +47,7 @@ jobs:
4747
sf-version: '5.4'
4848
- php-version: '8.3'
4949
sf-version: '5.4'
50-
- php-version: '8.3'
50+
- php-version: '8.4'
5151
sf-version: '5.4'
5252

5353
name: integration-tests (PHP ${{ matrix.php-version }}) (Symfony ${{ matrix.sf-version }}.*)
@@ -87,13 +87,15 @@ jobs:
8787
code-style:
8888
runs-on: ubuntu-latest
8989
name: 'Code style'
90+
env:
91+
PHP_CS_FIXER_IGNORE_ENV: 1
9092
steps:
9193
- uses: actions/checkout@v4
9294

9395
- name: Install PHP
9496
uses: shivammathur/setup-php@v2
9597
with:
96-
php-version: 8.3
98+
php-version: 8.4
9799

98100
- name: Validate composer.json and composer.lock
99101
run: composer validate

0 commit comments

Comments
 (0)