Skip to content

Commit 3c8e186

Browse files
#38 Update github workflows with PHP 8.1 to 8.4 and Symfony ^6.4|^7.3
1 parent 2284615 commit 3c8e186

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

.github/workflows/quality.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install PHP with extensions
2020
uses: shivammathur/setup-php@v2
2121
with:
22-
php-version: '8.2'
22+
php-version: '8.4'
2323
coverage: none
2424
tools: composer:v2
2525
- name: Install Composer dependencies (locked)
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install PHP with extensions
3939
uses: shivammathur/setup-php@v2
4040
with:
41-
php-version: '8.2'
41+
php-version: '8.4'
4242
coverage: none
4343
tools: composer:v2
4444
- name: Install Composer dependencies (locked)
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install PHP with extensions
5656
uses: shivammathur/setup-php@v2
5757
with:
58-
php-version: '8.2'
58+
php-version: '8.4'
5959
coverage: none
6060
tools: composer:v2
6161
- name: Install Composer dependencies (locked)

.github/workflows/test.yml

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,25 @@ jobs:
2020
strategy:
2121
matrix:
2222
php-version:
23+
- '8.1'
2324
- '8.2'
2425
- '8.3'
26+
- '8.4'
2527
dependencies: [highest]
2628
allowed-to-fail: [false]
2729
symfony-require: ['']
2830
variant: [normal]
2931
include:
32+
- php-version: '8.1'
33+
dependencies: highest
34+
allowed-to-fail: false
35+
symfony-require: 6.4.*
36+
variant: symfony/symfony:"6.4.*"
37+
- php-version: '8.1'
38+
dependencies: highest
39+
allowed-to-fail: false
40+
symfony-require: 7.3.*
41+
variant: symfony/symfony:"7.3.*"
3042
- php-version: '8.2'
3143
dependencies: highest
3244
allowed-to-fail: false
@@ -35,8 +47,8 @@ jobs:
3547
- php-version: '8.2'
3648
dependencies: highest
3749
allowed-to-fail: false
38-
symfony-require: 7.1.*
39-
variant: symfony/symfony:"7.1.*"
50+
symfony-require: 7.3.*
51+
variant: symfony/symfony:"7.3.*"
4052
- php-version: '8.3'
4153
dependencies: highest
4254
allowed-to-fail: false
@@ -45,8 +57,18 @@ jobs:
4557
- php-version: '8.3'
4658
dependencies: highest
4759
allowed-to-fail: false
48-
symfony-require: 7.1.*
49-
variant: symfony/symfony:"7.1.*"
60+
symfony-require: 7.3.*
61+
variant: symfony/symfony:"7.3.*"
62+
- php-version: '8.4'
63+
dependencies: highest
64+
allowed-to-fail: false
65+
symfony-require: 6.4.*
66+
variant: symfony/symfony:"6.4.*"
67+
- php-version: '8.4'
68+
dependencies: highest
69+
allowed-to-fail: false
70+
symfony-require: 7.3.*
71+
variant: symfony/symfony:"7.3.*"
5072

5173
steps:
5274
- name: Checkout

0 commit comments

Comments
 (0)