File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ jobs:
1313 matrix :
1414 php-version : [ "8.3", "8.4" ]
1515 steps :
16- - uses : shivammathur/setup-php@v2
16+ - name : Set up PHP
17+ uses : shivammathur/setup-php@v2
1718 with :
1819 php-version : ${{ matrix.php-version }}
19- coverage : xdebug, pcov
20+ coverage : xdebug
2021 tools : composer:v2
21- - uses : actions/checkout@v4
22- with :
23- fetch-depth : 0
22+ - name : Checkout
23+ uses : actions/checkout@v4
2424 - name : Install Dependencies
2525 run : composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
2626 - name : Execute unit tests via PHPUnit with coverage
@@ -36,14 +36,15 @@ jobs:
3636 needs : tests-with-coverage
3737 runs-on : ubuntu-latest
3838 steps :
39- - uses : shivammathur/setup-php@v2
39+ - name : Set up PHP
40+ uses : shivammathur/setup-php@v2
4041 with :
4142 php-version : " 8.4"
4243 tools : composer:v2
43- - uses : actions/checkout@v4
44- with :
45- fetch-depth : 0
46- - uses : actions/download-artifact@v4
44+ - name : Checkout
45+ uses : actions/checkout@v4
46+ - name : Import coverage report
47+ uses : actions/download-artifact@v4
4748 with :
4849 name : clover.xml
4950 path : build/logs
You can’t perform that action at this time.
0 commit comments