Skip to content

Commit f0a27e5

Browse files
committed
fix: remarks from reviewer
1 parent deac83c commit f0a27e5

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.github/workflows/run-tests-with-coverage.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)