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
11 changes: 3 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3]
php: [8.0, 8.1, 8.2, 8.3, 8.4, 8.5]
experimental: [false]
include:
- php: 8.2
- php: 8.4
analysis: true

steps:
Expand All @@ -26,12 +26,7 @@ jobs:
php-version: ${{ matrix.php }}
coverage: xdebug

- name: Install dependencies with Composer (PHP 8.0)
if: ${{ matrix.php == 8.0 }}
run: rm composer.lock && composer update

- name: Install dependencies with Composer (PHP 8.1+)
if: ${{ matrix.php >= 8.1 }}
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2

- name: Coding standards
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea/
composer.lock
.vendor/
vendor/
/.tmp
Expand Down
Loading