diff options
| author | Greg <supahgreg@users.noreply.github.com> | 2025-10-11 11:43:04 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-11 11:43:04 -0500 |
| commit | 73e6ade27f9751d3892693be9e11946462e10ed5 (patch) | |
| tree | b2696cebda0a5b81b361e093d27bd80cefdb2b7a /.github | |
| parent | df4630b316f468c772fb4edc7e1dc0a46765542f (diff) | |
| parent | 3bb71c4e6b0bcf803e96413fa30b63490eb43465 (diff) | |
Merge pull request #39 from tt-rss/composer-lock-and-phpunit
Composer cleanup, PHPUnit 9 --> 12
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/php-code-quality.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/php-code-quality.yml b/.github/workflows/php-code-quality.yml index 6be750081..b640d2c7b 100644 --- a/.github/workflows/php-code-quality.yml +++ b/.github/workflows/php-code-quality.yml @@ -35,7 +35,7 @@ jobs: php-version: '8.4' coverage: none # PHPUnit is installed to support PHPStan checking tests/ - tools: phpstan/phpstan:2.1.31, phpunit/phpunit:9.6.29 + tools: phpstan/phpstan:^2.1, phpunit/phpunit:^12.4 # https://phpstan.org/user-guide/result-cache - name: Restore result cache @@ -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,9 +78,10 @@ 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:9.6.29 + tools: phpunit/phpunit:^12.4 - name: Run PHPUnit - run: phpunit --exclude integration --coverage-filter classes --coverage-filter include + run: phpunit --exclude-group integration --coverage-filter classes --coverage-filter include |