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: test with PHP 8.4 and bump actions versions #143

Merged
merged 4 commits into from
Nov 26, 2024
Merged
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
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
dependencies:
- highest
include:
- php-version: "8.3"
- php-version: "8.4"
dependencies: lowest
fail-fast: false
env:
SYMFONY_DEPRECATIONS_HELPER: ${{ matrix.dependencies == 'lowest' && 'disabled=1' || 'max[direct]=0' }}

services:
mysql:
Expand All @@ -42,7 +45,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -51,7 +54,7 @@ jobs:
extensions: mbstring, xml, ctype, iconv, intl, pdo_mysql, pdo_pgsql

- name: Install dependencies
uses: "ramsey/composer-install@v2"
uses: ramsey/composer-install@v3
with:
dependency-versions: "${{ matrix.dependencies }}"

Expand Down