File tree 4 files changed +9
-34
lines changed
4 files changed +9
-34
lines changed Original file line number Diff line number Diff line change 21
21
22
22
jobs :
23
23
coding-standards :
24
- name : " Coding Standards"
24
+ name : " Coding Standards (PHP: ${{ inputs.php-version }}) "
25
25
runs-on : " ubuntu-22.04"
26
26
27
- strategy :
28
- matrix :
29
- php-version :
30
- - " ${{ inputs.php-version }}"
31
-
32
27
steps :
33
28
- name : " Checkout"
34
29
uses : " actions/checkout@v4"
37
32
uses : " shivammathur/setup-php@v2"
38
33
with :
39
34
coverage : " none"
40
- php-version : " ${{ matrix .php-version }}"
35
+ php-version : " ${{ inputs .php-version }}"
41
36
tools : " cs2pr"
42
37
43
38
- name : " Set COMPOSER_ROOT_VERSION"
Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
composer-lint :
15
- name : " Composer Lint"
15
+ name : " Composer Lint (PHP: ${{ inputs.php-version }}) "
16
16
runs-on : " ubuntu-22.04"
17
17
18
- strategy :
19
- matrix :
20
- php-version :
21
- - " ${{ inputs.php-version }}"
22
-
23
18
steps :
24
19
- name : " Checkout"
25
20
uses : " actions/checkout@v4"
28
23
uses : " shivammathur/setup-php@v2"
29
24
with :
30
25
coverage : " none"
31
- php-version : " ${{ matrix .php-version }}"
26
+ php-version : " ${{ inputs .php-version }}"
32
27
tools : composer:v2, composer-normalize:2
33
28
env :
34
29
COMPOSER_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change 9
9
name : " phpDocumentor Guides"
10
10
runs-on : " ubuntu-22.04"
11
11
12
- strategy :
13
- matrix :
14
- php-version :
15
- - " 8.3" # Use the same version as in doctrine/doctrine-website
16
-
17
12
steps :
18
13
- name : " Checkout"
19
14
uses : " actions/checkout@v4"
22
17
uses : " shivammathur/setup-php@v2"
23
18
with :
24
19
coverage : " none"
25
- php-version : " ${{ matrix.php- version }} "
20
+ php-version : " 8.3 " # Use the same version as in doctrine/doctrine-website
26
21
tools : " cs2pr"
27
22
28
23
# Some of our dependencies have supported branches where they still need
Original file line number Diff line number Diff line change 21
21
22
22
jobs :
23
23
phpstan :
24
- name : " PHPStan"
24
+ name : " PHPStan (PHP: ${{ inputs.php-version }}) "
25
25
runs-on : " ubuntu-22.04"
26
26
27
- strategy :
28
- matrix :
29
- php-version :
30
- - " ${{ inputs.php-version }}"
31
-
32
27
steps :
33
28
- name : " Checkout code"
34
29
uses : " actions/checkout@v4"
37
32
uses : " shivammathur/setup-php@v2"
38
33
with :
39
34
coverage : " none"
40
- php-version : " ${{ matrix .php-version }}"
35
+ php-version : " ${{ inputs .php-version }}"
41
36
42
37
- name : " Set COMPOSER_ROOT_VERSION"
43
38
run : |
54
49
run : " vendor/bin/phpstan analyse -v"
55
50
56
51
psalm :
57
- name : " Psalm"
52
+ name : " Psalm (PHP: ${{ inputs.php-version }}) "
58
53
runs-on : " ubuntu-22.04"
59
54
60
- strategy :
61
- matrix :
62
- php-version :
63
- - " ${{ inputs.php-version }}"
64
-
65
55
steps :
66
56
- name : " Checkout code"
67
57
uses : " actions/checkout@v4"
70
60
uses : " shivammathur/setup-php@v2"
71
61
with :
72
62
coverage : " none"
73
- php-version : " ${{ matrix .php-version }}"
63
+ php-version : " ${{ inputs .php-version }}"
74
64
75
65
- name : " Set COMPOSER_ROOT_VERSION"
76
66
run : |
You can’t perform that action at this time.
0 commit comments