File tree Expand file tree Collapse file tree 2 files changed +11
-15
lines changed Expand file tree Collapse file tree 2 files changed +11
-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.2"
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 :
@@ -16,17 +16,13 @@ jobs:
16
16
strategy :
17
17
fail-fast : true
18
18
matrix :
19
- os : [ubuntu-latest, windows-latest ]
19
+ os : [ubuntu-latest]
20
20
php : [8.3, 8.2]
21
- laravel : [11.*, 10.*]
22
21
stability : [prefer-lowest, prefer-stable]
23
22
include :
24
23
- laravel : 11.*
25
24
testbench : 9.*
26
- carbon : ^2.63
27
- - laravel : 10.*
28
- testbench : 8.*
29
- carbon : ^2.63
25
+ carbon : ^3.1.1
30
26
31
27
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
32
28
You can’t perform that action at this time.
0 commit comments