File tree Expand file tree Collapse file tree 1 file changed +11
-12
lines changed Expand file tree Collapse file tree 1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,18 @@ jobs:
1616 strategy :
1717 fail-fast : true
1818 matrix :
19- os : [ubuntu-latest, windows-latest]
20- php : [8.2, 8.1, 8.0]
21- laravel : ['9.*', '10.*', '11.*', '12.*']
22- stability : [prefer-lowest, prefer-stable]
19+ os : [ ubuntu-latest, windows-latest ]
20+ php : [ 8.2, 8.1, 8.0 ]
21+ laravel : [ 9.*, 10.*, 11.*, 12.* ]
2322 include :
2423 - laravel : 9.*
25- - testbench : 7.*
24+ testbench : 7.*
2625 - laravel : 10.*
27- testbench : ^8.0
26+ testbench : 8.*
2827 - laravel : 11.*
29- testbench : ^9.0
28+ testbench : 9.*
3029 - laravel : 12.*
31- testbench : ^ 10.0
30+ testbench : 10.*
3231 exclude :
3332 - laravel : 10.*
3433 php : 8.0
4140 - laravel : 12.*
4241 php : 8.0
4342
44- name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix. os }}
43+ name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
4544
4645 steps :
4746 - name : Checkout code
@@ -62,17 +61,17 @@ jobs:
6261 - name : Install dependencies
6362 run : |
6463 composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
65- composer update --${{ matrix.stability }} -- prefer-dist --no-interaction
64+ composer update --prefer-dist --no-interaction
6665
6766 - name : List Installed Dependencies
6867 run : composer show -D
6968
7069 - name : Execute tests
7170 run : vendor/bin/pest
72-
71+
7372 - name : Run PHPStan
7473 shell : bash
7574 run : |
7675 LARAVEL_VERSION="${{ matrix.laravel }}"
7776 LARAVEL_VERSION="${LARAVEL_VERSION%%.*}"
78- vendor/bin/phpstan analyse -c "phpstan-${LARAVEL_VERSION}.neon" src
77+ vendor/bin/phpstan analyse -c "phpstan-${LARAVEL_VERSION}.neon" src
You can’t perform that action at this time.
0 commit comments