Skip to content

Commit 73a29f3

Browse files
committed
Merge branch main
2 parents 10a460d + 5498a27 commit 73a29f3

File tree

7 files changed

+247
-317
lines changed

7 files changed

+247
-317
lines changed

.github/workflows/code_quality.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515

1616
strategy:
1717
matrix:
18+
php:
19+
- 8.2
20+
- 8.3
1821
actions:
1922
-
2023
name: 'Composer Normalize'
@@ -40,14 +43,14 @@ jobs:
4043
name: 'PHPUnit'
4144
run: composer phpunit
4245

43-
name: ${{ matrix.actions.name }}
46+
name: ${{ matrix.actions.name }} (PHP ${{ matrix.php }})
4447

4548
steps:
4649
- uses: actions/checkout@v4
4750

4851
- uses: shivammathur/setup-php@v2
4952
with:
50-
php-version: 8.3
53+
php-version: ${{ matrix.php }}
5154
coverage: none
5255

5356
- uses: ramsey/composer-install@v2

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@
4545
"post-update-cmd": [
4646
"@composer normalize"
4747
],
48+
"code-quality": [
49+
"@rector",
50+
"@phpstan",
51+
"@pint"
52+
],
4853
"phpstan": "vendor/bin/phpstan analyse --ansi",
4954
"phpunit": "vendor/bin/phpunit tests",
5055
"pint": "vendor/bin/pint",

0 commit comments

Comments
 (0)