Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use php 8.4 #6850

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
env:
APP_DEBUG: '1' # https://github.com/phpstan/phpstan-symfony/issues/37
Expand Down Expand Up @@ -201,10 +201,11 @@ jobs:
php:
- '8.2'
- '8.3'
- '8.4'
include:
- php: '8.2'
coverage: true
- php: '8.3'
- php: '8.4'
coverage: true
fail-fast: false
steps:
Expand Down Expand Up @@ -271,6 +272,7 @@ jobs:
php:
- '8.2'
- '8.3'
- '8.4'
component:
- api-platform/doctrine-common
- api-platform/doctrine-orm
Expand All @@ -290,8 +292,8 @@ jobs:
- api-platform/validator
include:
- php: '8.2'
coverage: true
- php: '8.3'
- php: '8.4'
coverage: true
fail-fast: false
steps:
Expand Down Expand Up @@ -349,13 +351,12 @@ jobs:
php:
- '8.2'
- '8.3'
- '8.4'
include:
- php: '8.2'
coverage: true
- php: '8.3'
- php: '8.4'
coverage: true
- php: '8.3'
coverage: false
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -449,7 +450,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
env:
APP_ENV: postgres
Expand Down Expand Up @@ -499,7 +500,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
services:
mysql:
Expand Down Expand Up @@ -549,8 +550,7 @@ jobs:
strategy:
matrix:
php:
- '8.2'
- '8.3'
- '8.4'
fail-fast: false
env:
APP_ENV: mongodb
Expand Down Expand Up @@ -638,8 +638,7 @@ jobs:
strategy:
matrix:
php:
- '8.2'
- '8.3'
- '8.4'
fail-fast: false
env:
APP_ENV: mercure
Expand Down Expand Up @@ -729,7 +728,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
env:
APP_ENV: elasticsearch
Expand Down Expand Up @@ -781,7 +780,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -820,7 +819,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -863,7 +862,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -1008,7 +1007,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -1054,9 +1053,9 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
include:
- php: '8.3'
- php: '8.4'
coverage: true
fail-fast: false
steps:
Expand Down Expand Up @@ -1132,7 +1131,7 @@ jobs:
strategy:
matrix:
php:
- '8.3'
- '8.4'
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -1202,10 +1201,11 @@ jobs:
php:
- '8.2'
- '8.3'
- '8.4'
include:
- php: '8.2'
coverage: true
- php: '8.3'
- php: '8.4'
coverage: true
fail-fast: false
steps:
Expand Down
Loading