Skip to content

Commit

Permalink
chore: update for php 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tlayh committed Mar 6, 2024
1 parent 2dcd717 commit 704492d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
typo3DatabaseUsername: root

- name: Tests for Scrutinizer with Coverage
if: matrix.typo3 == '^11.5' && matrix.php == '8.0'
if: matrix.typo3 == '^11.5' && matrix.php == '8.3'
run: |
composer test:coverage
env:
Expand All @@ -72,6 +72,6 @@ jobs:

- name: Upload coverage results to Scrutinizer
uses: sudo-bot/action-scrutinizer@latest
if: matrix.typo3 == '^11.5' && matrix.php == '8.0'
if: matrix.typo3 == '^11.5' && matrix.php == '8.3'
with:
cli-args: "--format=php-clover .Build/reports/php_all_tests/coverage_clover.xml --revision=${{ github.event.pull_request.head.sha || github.sha }}"
5 changes: 3 additions & 2 deletions code-quality/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
__DIR__ . '/../code-quality',
])
->withPhpSets(
false,
true
true,
false
)
->withSets([
SetList::CODE_QUALITY,
Expand All @@ -47,6 +47,7 @@
SetList::PHP_80,
SetList::PHP_81,
SetList::PHP_82,
SetList::PHP_83,
SetList::PRIVATIZATION,
SetList::TYPE_DECLARATION,
SetList::NAMING,
Expand Down

0 comments on commit 704492d

Please sign in to comment.