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
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
tests/ export-ignore
.github/ export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.php-cs-fixer.php export-ignore
composer.lock export-ignore
phpstan.neon export-ignore
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:

strategy:
matrix:
php: [ '8.2', '8.3', '8.4' ]
php: [ '8.2', '8.3', '8.4', '8.5' ]

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

# Docs: https://github.com/shivammathur/setup-php
- name: Setup PHP
Expand All @@ -26,7 +26,7 @@ jobs:
run: composer validate --strict

- name: Install Composer dependencies
run: composer install --no-progress
uses: "ramsey/composer-install@v3"

- name: Run PHPUnit
run: composer test
Expand Down
Loading