Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: shivammathur/setup-php@728c6c6b8cf02c2e48117716a91ee48313958a19 # v2
with:
php-version: ${{ matrix.php }}
coverage: none
coverage: pcov
tools: composer:v2

- name: Install dependencies
Expand All @@ -36,7 +36,7 @@ jobs:
run: composer phpstan

- name: Tests
run: composer test
run: composer test:coverage
Comment thread
Goosterhof marked this conversation as resolved.
Comment thread
Goosterhof marked this conversation as resolved.

# Aggregate tracked by the town-crier trial (TC-0069), intended as the single
# required check (the matrix legs stop being individually required).
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
},
"scripts": {
"test": "pest",
"test:coverage": "pest --coverage --min=95",
Comment thread
Goosterhof marked this conversation as resolved.
Comment thread
Goosterhof marked this conversation as resolved.
"phpstan": "phpstan analyse",
"format": "pint",
"format:check": "pint --test"
Expand Down