File tree 2 files changed +12
-15
lines changed
2 files changed +12
-15
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: PHPStan
3
3
on :
4
4
push :
5
5
paths :
6
- - ' **.php'
7
- - ' phpstan.neon.dist'
8
- - ' .github/workflows/phpstan.yml'
6
+ - " **.php"
7
+ - " phpstan.neon.dist"
8
+ - " .github/workflows/phpstan.yml"
9
9
10
10
jobs :
11
11
phpstan :
18
18
- name : Setup PHP
19
19
uses : shivammathur/setup-php@v2
20
20
with :
21
- php-version : ' 8.2 '
21
+ php-version : " 8.4 "
22
22
coverage : none
23
23
24
24
- name : Install composer dependencies
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ name: run-tests
3
3
on :
4
4
push :
5
5
paths :
6
- - ' **.php'
7
- - ' .github/workflows/run-tests.yml'
8
- - ' phpunit.xml.dist'
9
- - ' composer.json'
10
- - ' composer.lock'
6
+ - " **.php"
7
+ - " .github/workflows/run-tests.yml"
8
+ - " phpunit.xml.dist"
9
+ - " composer.json"
10
+ - " composer.lock"
11
11
12
12
jobs :
13
13
test :
@@ -17,16 +17,13 @@ jobs:
17
17
fail-fast : true
18
18
matrix :
19
19
os : [ubuntu-latest, windows-latest]
20
- php : [8.3, 8.2 ]
21
- laravel : [11.*, 10.* ]
22
- stability : [prefer-lowest, prefer- stable]
20
+ php : [8.3, 8.4 ]
21
+ laravel : [11.*]
22
+ stability : [prefer-stable]
23
23
include :
24
24
- laravel : 11.*
25
25
testbench : 9.*
26
26
carbon : ^2.63
27
- - laravel : 10.*
28
- testbench : 8.*
29
- carbon : ^2.63
30
27
31
28
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
32
29
You can’t perform that action at this time.
0 commit comments