diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-11 16:41:05 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-11 16:41:05 +0000 |
| commit | 3bb71c4e6b0bcf803e96413fa30b63490eb43465 (patch) | |
| tree | b2696cebda0a5b81b361e093d27bd80cefdb2b7a /.github/workflows/php-code-quality.yml | |
| parent | 37c4298ae23de8aa690baa59868bf37ce20ff1fd (diff) | |
Drop running PHPUnit under PHP 8.2.
PHPUnit 12 dropped support for PHP 8.2
Diffstat (limited to '.github/workflows/php-code-quality.yml')
| -rw-r--r-- | .github/workflows/php-code-quality.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/php-code-quality.yml b/.github/workflows/php-code-quality.yml index 57836fd62..b640d2c7b 100644 --- a/.github/workflows/php-code-quality.yml +++ b/.github/workflows/php-code-quality.yml @@ -65,7 +65,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.2', '8.3', '8.4'] + php: ['8.3', '8.4'] experimental: [false] include: - php: '8.5' @@ -78,6 +78,7 @@ jobs: - name: Set up PHP ${{ matrix.php }} uses: shivammathur/setup-php@v2 with: + # Check https://phpunit.de/supported-versions.html for PHP version compatibility php-version: ${{ matrix.php }} coverage: none tools: phpunit/phpunit:^12.4 |