File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1010 matrix :
1111 os : [ubuntu-latest]
1212 php : [8.1, 8.2, 8.3]
13+ laravel : [12.*]
14+ include :
15+ - laravel : 12.*
16+ testbench : 10.*
1317
14- name : P${{ matrix.php }} - ${{ matrix.os }}
18+ name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
1519
1620 steps :
1721 - name : Checkout code
2630
2731 - name : Install dependencies
2832 run : |
29- composer install --prefer-dist --no-interaction
33+ composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction
34+ composer install --${{ matrix.stability }} --prefer-dist --no-interaction
3035
3136 - name : Execute phpstan
3237 run : vendor/bin/phpstan analyse
Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ parameters:
22 paths :
33 - src/
44 level : 6
5- checkMissingIterableValueType : false
6- checkGenericClassInNonGenericObjectType : false
5+ ignoreErrors :
6+ - identifier : missingType.iterableValue
7+ - identifier : missingType.generics
You can’t perform that action at this time.
0 commit comments