Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit 368b778

Browse files
ci: fix lint stage — use PHP 8.2 for dev tooling
Composer dev deps (phpunit, php-scoper) require PHP 8.1+. PHP 8.0 compatibility is already covered by the integration matrix. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4b93209 commit 368b778

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,17 @@ concurrency:
1212
jobs:
1313
# ── Stage 1: Fast checks (~30s) ──────────────────────────────────────
1414
lint:
15-
name: Lint (PHP ${{ matrix.php-version }})
15+
name: Lint
1616
runs-on: ubuntu-latest
1717

18-
strategy:
19-
matrix:
20-
php-version: ['8.0', '8.2']
21-
2218
steps:
2319
- name: Checkout code
2420
uses: actions/checkout@v4
2521

26-
- name: Setup PHP ${{ matrix.php-version }}
22+
- name: Setup PHP
2723
uses: shivammathur/setup-php@v2
2824
with:
29-
php-version: ${{ matrix.php-version }}
25+
php-version: '8.2'
3026
tools: cs2pr
3127
coverage: none
3228

0 commit comments

Comments
 (0)