Skip to content

Commit c6a5214

Browse files
Add php 8.5 and Symfony 8 to workflows
1 parent 615532f commit c6a5214

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/coding-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: "Setup PHP Action"
1616
uses: "shivammathur/setup-php@v2"
1717
with:
18-
php-version: "8.4"
18+
php-version: "8.5"
1919
extensions: "intl, xdebug"
2020

2121
- name: "Install dependencies with Composer"

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: "Setup PHP Action"
1616
uses: "shivammathur/setup-php@v2"
1717
with:
18-
php-version: "8.4"
18+
php-version: "8.5"
1919
extensions: "intl, xdebug"
2020

2121
- name: "Install dependencies with Composer"

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@ jobs:
88
tests:
99

1010
runs-on: "ubuntu-latest"
11-
continue-on-error: "${{ matrix.php-versions == '8.5' || matrix.symfony == '7.4.*' }}"
11+
continue-on-error: "${{ matrix.php-versions == '8.6' || matrix.symfony == '8.1.*' }}"
1212
strategy:
1313
matrix:
1414
php-versions: ['8.2', '8.3', '8.4', '8.5']
1515
symfony:
1616
- '6.4.*'
1717
- '7.3.*'
1818
- '7.4.*'
19+
- '8.0.*'
1920

2021
steps:
2122
- uses: "actions/checkout@v6"
@@ -36,7 +37,7 @@ jobs:
3637
extensions: "intl, xdebug"
3738

3839
- name: "Adapt dependencies"
39-
if: ${{ matrix.symfony == '7.4.*' }}
40+
if: ${{ matrix.symfony == '8.1.*' }}
4041
run: "composer config minimum-stability dev"
4142

4243
- name: "Install dependencies"

0 commit comments

Comments
 (0)