File tree Expand file tree Collapse file tree 7 files changed +15
-40
lines changed Expand file tree Collapse file tree 7 files changed +15
-40
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 : |
Original file line number Diff line number Diff line change 8
8
paths :
9
9
- " .github/workflows/coding-standards.yml"
10
10
- " composer.*"
11
- - " src/**" # but some packages use lib
11
+ - " src/**"
12
12
- " phpcs.xml.dist"
13
13
- " tests/**"
14
14
push :
17
17
paths :
18
18
- " .github/workflows/coding-standards.yml"
19
19
- " composer.*"
20
- - " src/**" # but some packages use lib
20
+ - " src/**"
21
21
- " phpcs.xml.dist"
22
22
- " tests/**"
23
23
Original file line number Diff line number Diff line change 7
7
paths :
8
8
- " .github/workflows/continuous-integration.yml"
9
9
- " composer.*"
10
- - " src/**" # but some packages use lib
10
+ - " src/**"
11
11
- " phpunit.xml.dist"
12
12
- " tests/**"
13
13
push :
16
16
paths :
17
17
- " .github/workflows/continuous-integration.yml"
18
18
- " composer.*"
19
- - " src/**" # but some packages use lib
19
+ - " src/**"
20
20
- " phpunit.xml.dist"
21
21
- " tests/**"
22
22
Original file line number Diff line number Diff line change 8
8
paths :
9
9
- " .github/workflows/static-analysis.yml"
10
10
- " composer.*"
11
- - " src/**" # but some packages use lib
11
+ - " src/**"
12
12
- " phpstan*"
13
13
- " psalm*"
14
14
- " tests/**"
18
18
paths :
19
19
- " .github/workflows/static-analysis.yml"
20
20
- " composer.*"
21
- - " src/**" # but some packages use lib
21
+ - " src/**"
22
22
- " phpstan*"
23
23
- " psalm*"
24
24
- " tests/**"
You can’t perform that action at this time.
0 commit comments