Skip to content

Commit 9d359f2

Browse files
authored
fix(actions): always add coverage diver
1 parent 0cbf6b1 commit 9d359f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/php-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
matrix:
1313
include:
1414
- { php-version: 8.3, dependencies: locked, coverage: pcov, with_coverage: true, allow-fail: false }
15-
- { php-version: 8.3, dependencies: highest, coverage: none, with_coverage: false, allow-fail: false }
15+
- { php-version: 8.3, dependencies: highest, coverage: pcov, with_coverage: false, allow-fail: false }
1616

17-
- { php-version: 8.4, dependencies: locked, coverage: none, with_coverage: false, allow-fail: true }
18-
- { php-version: 8.4, dependencies: highest, coverage: none, with_coverage: false, allow-fail: true }
17+
- { php-version: 8.4, dependencies: locked, coverage: pcov, with_coverage: false, allow-fail: true }
18+
- { php-version: 8.4, dependencies: highest, coverage: pcov, with_coverage: false, allow-fail: true }
1919
steps:
2020
- name: "Checkout"
2121
uses: "actions/[email protected]"
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
dependencies: "${{ matrix.dependencies }}"
5353

54-
- name: "Run GrumPHP"
54+
- name: "Run Tests"
5555
run: |
5656
vendor/bin/codecept build -c .
5757
vendor/bin/codecept run -c . -vvv --coverage --coverage-xml=coverage.xml --xml

0 commit comments

Comments
 (0)