File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
phpstan :
10
10
name : Analyze
11
- runs-on : ${{ matrix.operating-system }}
12
- strategy :
13
- matrix :
14
- operating-system : [ubuntu-latest]
15
- php-versions : ['7.4', '8.4']
11
+ runs-on : [ubuntu-latest]
16
12
17
13
steps :
18
14
- name : Setup PHP
19
15
uses : shivammathur/setup-php@v2
20
16
with :
21
- php-version : ${{ matrix.php-versions }}
17
+ php-version : 7.4
22
18
23
19
- uses : actions/checkout@v4
24
20
40
36
uses : actions/cache/restore@v4
41
37
with :
42
38
path : .phpstan.cache
43
- key : phpstan-result-cache-${{ matrix.php-versions }}-${{ github.run_id }}
39
+ key : phpstan-result-cache-${{ github.run_id }}
44
40
restore-keys : |
45
41
phpstan-result-cache-
46
42
52
48
if : always()
53
49
with :
54
50
path : .phpstan.cache
55
- key : phpstan-result-cache-${{ matrix.php-versions }}-${{ github.run_id }}
51
+ key : phpstan-result-cache-${{ github.run_id }}
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ includes:
3
3
- .phpstan.dist.baseline.neon
4
4
- phar://phpstan.phar/conf/bleedingEdge.neon
5
5
parameters :
6
+ phpVersion :
7
+ min : 70433
8
+ max : 80499
6
9
magentoRootPath : %currentWorkingDirectory%
7
10
fileExtensions :
8
11
- php
You can’t perform that action at this time.
0 commit comments