Skip to content

Commit 070d162

Browse files
committed
ci: disable coverage for ci
1 parent 6724b28 commit 070d162

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
php-versions: ['8.0', '8.1', '8.2']
1616

1717
name: PHPUnit ${{ matrix.php-versions }}
18-
1918
steps:
2019
- uses: actions/checkout@v2
2120

@@ -29,7 +28,8 @@ jobs:
2928
path: vendor
3029
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
3130
restore-keys: |
32-
${{ runner.os }}-php-
31+
${{ runner.os }}-php-${{ matrix.php-versions }}
32+
3333
- name: Install dependencies
3434
if: steps.composer-cache.outputs.cache-hit != 'true'
3535
run: composer install --prefer-dist --no-progress --no-suggest

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"phpunit/phpunit": "^10.1"
1414
},
1515
"scripts": {
16-
"test": "phpunit"
16+
"test": [
17+
"phpunit --no-coverage"
18+
]
1719
},
1820
"autoload": {
1921
"psr-4": {

0 commit comments

Comments
 (0)