44 push :
55 branches :
66 - main
7-
87 pull_request :
9- types : [ opened, synchronize, reopened ]
8+ types :
9+ - opened
10+ - synchronize
11+ - reopened
1012
1113jobs :
1214 test :
1315 runs-on : ubuntu-latest
16+
1417 strategy :
1518 fail-fast : false
1619 matrix :
1720 php : ['8.0', '8.1', '8.2', '8.3']
18- laravel : ['8.*', '9.*', '10.*', '11.*']
21+ laravel : ['8.*', '9.*', '10.*', '11.*', '12.*' ]
1922 dependency-version : [prefer-lowest, prefer-stable]
2023 include :
2124 - laravel : 8.*
2629 testbench : 8.*
2730 - laravel : 11.*
2831 testbench : 9.*
29-
32+ - laravel : 12.*
33+ testbench : 10.*
3034 exclude :
3135 - laravel : 8.*
3236 php : 8.1
@@ -37,21 +41,22 @@ jobs:
3741 - laravel : 8.*
3842 php : 8.3
3943 dependency-version : prefer-lowest
40-
4144 - laravel : 9.*
4245 php : 8.2
4346 dependency-version : prefer-lowest
4447 - laravel : 9.*
4548 php : 8.3
4649 dependency-version : prefer-lowest
47-
4850 - laravel : 10.*
4951 php : 8.0
50-
5152 - laravel : 11.*
5253 php : 8.0
5354 - laravel : 11.*
5455 php : 8.1
56+ - laravel : 12.*
57+ php : ' 8.0'
58+ - laravel : 12.*
59+ php : ' 8.1'
5560
5661 name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
5762
@@ -83,12 +88,12 @@ jobs:
8388 run : vendor/bin/phpunit
8489
8590 - name : Install Livewire V2 (Below Laravel 11.0)
86- if : " ! startsWith(matrix.laravel, '11.')"
91+ if : " ! startsWith(matrix.laravel, '11.') && ! startsWith(matrix.laravel, '12.') "
8792 run : |
8893 composer require "livewire/livewire:^2.3.10" -W --${{ matrix.dependency-version }} --no-interaction
8994
9095 - name : Test with Livewire V2
91- if : " ! startsWith(matrix.laravel, '11.')"
96+ if : " ! startsWith(matrix.laravel, '11.') && ! startsWith(matrix.laravel, '12.') "
9297 run : vendor/bin/phpunit
9398
9499 - name : Install Livewire V3 (Above Laravel 9.0)
0 commit comments