Skip to content

Commit d247368

Browse files
authored
Merge pull request #2413 from W0rma/php84
Test against PHP 8.4
2 parents e709d9a + b3d23bd commit d247368

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,20 @@ jobs:
4949
composer-flags: ""
5050
can-fail: false
5151
symfony-require: "6.4.*"
52+
- php-version: "8.4"
53+
composer-flags: ""
54+
can-fail: false
55+
symfony-require: "6.4.*"
5256
- php-version: "8.3"
5357
composer-flags: ""
5458
can-fail: false
5559
symfony-require: "6.4.*"
5660
remove-sensio-bundle: yes # Smoke test with SensioFrameworkExtraBundle removed on latest Symfony LTS
61+
- php-version: "8.4"
62+
composer-flags: ""
63+
can-fail: false
64+
symfony-require: "6.4.*"
65+
remove-sensio-bundle: yes # Smoke test with SensioFrameworkExtraBundle removed on latest Symfony LTS
5766
- php-version: "8.2"
5867
composer-flags: ""
5968
can-fail: false
@@ -63,6 +72,10 @@ jobs:
6372
composer-flags: ""
6473
can-fail: true # we don't want to fail the build if we are incompatible with the next (unstable) Symfony version
6574
remove-sensio-bundle: yes # SensioFrameworkExtraBundle is not compatible with Symfony 7.0 or later
75+
- php-version: "8.4"
76+
composer-flags: ""
77+
can-fail: true # we don't want to fail the build if we are incompatible with the next (unstable) Symfony version
78+
remove-sensio-bundle: yes # SensioFrameworkExtraBundle is not compatible with Symfony 7.0 or later
6679

6780
env:
6881
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -88,7 +101,7 @@ jobs:
88101
tools: "composer:v2,flex"
89102

90103
- name: "Cache dependencies installed with composer"
91-
uses: "actions/cache@v3"
104+
uses: "actions/cache@v4"
92105
with:
93106
path: "~/.composer/cache"
94107
key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}"

0 commit comments

Comments
 (0)