File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -18,24 +18,17 @@ concurrency:
18
18
19
19
jobs :
20
20
lint :
21
- name : PHP ${{ matrix.php-version }} Lint with PHP CS Fixer
21
+ name : Lint with PHP CS Fixer
22
22
runs-on : ubuntu-22.04
23
23
24
- strategy :
25
- fail-fast : false
26
- matrix :
27
- php-version :
28
- - ' 8.0'
29
- - ' 8.1'
30
-
31
24
steps :
32
25
- name : Checkout
33
26
uses : actions/checkout@v3
34
27
35
28
- name : Setup PHP
36
29
uses : shivammathur/setup-php@v2
37
30
with :
38
- php-version : ${{ matrix.php-version }}
31
+ php-version : ' 8.1 '
39
32
extensions : tokenizer
40
33
coverage : none
41
34
Original file line number Diff line number Diff line change @@ -35,12 +35,11 @@ concurrency:
35
35
36
36
jobs :
37
37
build :
38
- name : PHP ${{ matrix.php-versions }} Analyze code (Rector) on ${{ matrix.paths }}
38
+ name : Analyze code (Rector)
39
39
runs-on : ubuntu-22.04
40
40
strategy :
41
41
fail-fast : false
42
42
matrix :
43
- php-versions : ['8.0', '8.1']
44
43
paths :
45
44
- app
46
45
- system
53
52
- name : Setup PHP
54
53
uses : shivammathur/setup-php@v2
55
54
with :
56
- php-version : ${{ matrix.php-versions }}
55
+ php-version : ' 8.1 '
57
56
extensions : intl
58
57
59
58
- name : Use latest Composer
You can’t perform that action at this time.
0 commit comments