Skip to content

Commit

Permalink
Merge pull request #10 from fsylum/meta-update-2024-07-26
Browse files Browse the repository at this point in the history
Feature: QoL Update 2024-07-26
  • Loading branch information
fsylum authored Jul 26, 2024
2 parents 4765f49 + cda7dda commit 5498a27
Show file tree
Hide file tree
Showing 7 changed files with 245 additions and 313 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/code_quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:

strategy:
matrix:
php:
- 8.2
- 8.3
actions:
-
name: 'Composer Normalize'
Expand All @@ -40,14 +43,14 @@ jobs:
name: 'PHPUnit'
run: composer phpunit

name: ${{ matrix.actions.name }}
name: ${{ matrix.actions.name }} (PHP ${{ matrix.php }})

steps:
- uses: actions/checkout@v4

- uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: ${{ matrix.php }}
coverage: none

- uses: ramsey/composer-install@v2
Expand Down
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@
"post-update-cmd": [
"@composer normalize"
],
"code-quality": [
"@rector",
"@phpstan",
"@pint"
],
"phpstan": "vendor/bin/phpstan analyse --ansi",
"phpunit": "vendor/bin/phpunit tests",
"pint": "vendor/bin/pint",
Expand Down
Loading

0 comments on commit 5498a27

Please sign in to comment.