Skip to content

Commit 88eb8c1

Browse files
JanTvrdikclaude
andcommitted
Add PHP version matrix to checks workflow
Test against all supported PHP versions (7.4, 8.0, 8.1, 8.2, 8.3, 8.4) to ensure compatibility across the entire supported range. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent c13b0b2 commit 88eb8c1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
fail-fast: false
13+
matrix:
14+
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
1315
steps:
1416
-
1517
name: Checkout code
@@ -18,7 +20,7 @@ jobs:
1820
name: Setup PHP
1921
uses: shivammathur/setup-php@v2
2022
with:
21-
php-version: 8.4
23+
php-version: ${{ matrix.php-version }}
2224
-
2325
name: Install dependencies
2426
run: composer install --no-progress --prefer-dist --no-interaction

0 commit comments

Comments
 (0)