We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3efca39 commit bba8c2eCopy full SHA for bba8c2e
.github/workflows/tests.yml
@@ -16,9 +16,11 @@ jobs:
16
strategy:
17
fail-fast: true
18
matrix:
19
- php: [8.1, 8.2, 8.3]
+ php: [8.1, 8.2, 8.3, 8.4]
20
laravel: [10, 11]
21
exclude:
22
+ - php: 8.4
23
+ laravel: 10
24
- php: 8.1
25
laravel: 11
26
@@ -38,7 +40,7 @@ jobs:
38
40
coverage: none
39
41
42
- name: Install dependencies
- run: composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction
43
+ run: composer update --prefer-dist --no-interaction --no-progress --with="illuminate/support=^${{ matrix.laravel }}"
44
45
- name: Execute tests
- run: vendor/bin/phpunit
46
+ run: vendor/bin/phpunit --display-deprecations
0 commit comments