Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/.gitignore export-ignore
/.php-cs-fixer.php export-ignore
/bin/ export-ignore
/compose.override.yaml.dist export-ignore
/compose.yaml export-ignore
/docs/ export-ignore
/phpstan-baseline.neon export-ignore
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:

steps:
- name: Git Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: PHP Setup
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.4

- name: Validate composer.json
run: composer validate --strict
run: composer validate --ansi --strict

- name: Install dependencies
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v4

- name: Check CS-Fixer
- name: Check PHP code style
run: composer cs:check

- name: Check PHPStan
Expand Down
Loading