Skip to content

Commit

Permalink
[1.x] Supports PHP 8.4 (#576)
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone authored Nov 12, 2024
1 parent 3efca39 commit bba8c2e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
php: [8.1, 8.2, 8.3, 8.4]
laravel: [10, 11]
exclude:
- php: 8.4
laravel: 10
- php: 8.1
laravel: 11

Expand All @@ -38,7 +40,7 @@ jobs:
coverage: none

- name: Install dependencies
run: composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction
run: composer update --prefer-dist --no-interaction --no-progress --with="illuminate/support=^${{ matrix.laravel }}"

- name: Execute tests
run: vendor/bin/phpunit
run: vendor/bin/phpunit --display-deprecations

0 comments on commit bba8c2e

Please sign in to comment.