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 2121
2222jobs :
2323 coding-standards :
24- name : " Coding Standards"
24+ name : " Coding Standards (PHP: ${{ inputs.php-version }}) "
2525 runs-on : " ubuntu-22.04"
2626
27- strategy :
28- matrix :
29- php-version :
30- - " ${{ inputs.php-version }}"
31-
3227 steps :
3328 - name : " Checkout"
3429 uses : " actions/checkout@v4"
3732 uses : " shivammathur/setup-php@v2"
3833 with :
3934 coverage : " none"
40- php-version : " ${{ matrix .php-version }}"
35+ php-version : " ${{ inputs .php-version }}"
4136 tools : " cs2pr"
4237
4338 - name : " Set COMPOSER_ROOT_VERSION"
Original file line number Diff line number Diff line change 1212
1313jobs :
1414 composer-lint :
15- name : " Composer Lint"
15+ name : " Composer Lint (PHP: ${{ inputs.php-version }}) "
1616 runs-on : " ubuntu-22.04"
1717
18- strategy :
19- matrix :
20- php-version :
21- - " ${{ inputs.php-version }}"
22-
2318 steps :
2419 - name : " Checkout"
2520 uses : " actions/checkout@v4"
2823 uses : " shivammathur/setup-php@v2"
2924 with :
3025 coverage : " none"
31- php-version : " ${{ matrix .php-version }}"
26+ php-version : " ${{ inputs .php-version }}"
3227 tools : composer:v2, composer-normalize:2
3328 env :
3429 COMPOSER_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change 99 name : " phpDocumentor Guides"
1010 runs-on : " ubuntu-22.04"
1111
12- strategy :
13- matrix :
14- php-version :
15- - " 8.3" # Use the same version as in doctrine/doctrine-website
16-
1712 steps :
1813 - name : " Checkout"
1914 uses : " actions/checkout@v4"
2217 uses : " shivammathur/setup-php@v2"
2318 with :
2419 coverage : " none"
25- php-version : " ${{ matrix.php- version }} "
20+ php-version : " 8.3 " # Use the same version as in doctrine/doctrine-website
2621 tools : " cs2pr"
2722
2823 # Some of our dependencies have supported branches where they still need
Original file line number Diff line number Diff line change 2121
2222jobs :
2323 phpstan :
24- name : " PHPStan"
24+ name : " PHPStan (PHP: ${{ inputs.php-version }}) "
2525 runs-on : " ubuntu-22.04"
2626
27- strategy :
28- matrix :
29- php-version :
30- - " ${{ inputs.php-version }}"
31-
3227 steps :
3328 - name : " Checkout code"
3429 uses : " actions/checkout@v4"
3732 uses : " shivammathur/setup-php@v2"
3833 with :
3934 coverage : " none"
40- php-version : " ${{ matrix .php-version }}"
35+ php-version : " ${{ inputs .php-version }}"
4136
4237 - name : " Set COMPOSER_ROOT_VERSION"
4338 run : |
5449 run : " vendor/bin/phpstan analyse -v"
5550
5651 psalm :
57- name : " Psalm"
52+ name : " Psalm (PHP: ${{ inputs.php-version }}) "
5853 runs-on : " ubuntu-22.04"
5954
60- strategy :
61- matrix :
62- php-version :
63- - " ${{ inputs.php-version }}"
64-
6555 steps :
6656 - name : " Checkout code"
6757 uses : " actions/checkout@v4"
7060 uses : " shivammathur/setup-php@v2"
7161 with :
7262 coverage : " none"
73- php-version : " ${{ matrix .php-version }}"
63+ php-version : " ${{ inputs .php-version }}"
7464
7565 - name : " Set COMPOSER_ROOT_VERSION"
7666 run : |
Original file line number Diff line number Diff line change 88 paths :
99 - " .github/workflows/coding-standards.yml"
1010 - " composer.*"
11- - " src/**" # but some packages use lib
11+ - " src/**"
1212 - " phpcs.xml.dist"
1313 - " tests/**"
1414 push :
1717 paths :
1818 - " .github/workflows/coding-standards.yml"
1919 - " composer.*"
20- - " src/**" # but some packages use lib
20+ - " src/**"
2121 - " phpcs.xml.dist"
2222 - " tests/**"
2323
Original file line number Diff line number Diff line change 77 paths :
88 - " .github/workflows/continuous-integration.yml"
99 - " composer.*"
10- - " src/**" # but some packages use lib
10+ - " src/**"
1111 - " phpunit.xml.dist"
1212 - " tests/**"
1313 push :
1616 paths :
1717 - " .github/workflows/continuous-integration.yml"
1818 - " composer.*"
19- - " src/**" # but some packages use lib
19+ - " src/**"
2020 - " phpunit.xml.dist"
2121 - " tests/**"
2222
Original file line number Diff line number Diff line change 88 paths :
99 - " .github/workflows/static-analysis.yml"
1010 - " composer.*"
11- - " src/**" # but some packages use lib
11+ - " src/**"
1212 - " phpstan*"
1313 - " psalm*"
1414 - " tests/**"
1818 paths :
1919 - " .github/workflows/static-analysis.yml"
2020 - " composer.*"
21- - " src/**" # but some packages use lib
21+ - " src/**"
2222 - " phpstan*"
2323 - " psalm*"
2424 - " tests/**"
You can’t perform that action at this time.
0 commit comments