Skip to content

Commit

Permalink
ci: disable coverage for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfensdrfer committed Jun 14, 2023
1 parent 6724b28 commit 070d162
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
php-versions: ['8.0', '8.1', '8.2']

name: PHPUnit ${{ matrix.php-versions }}

steps:
- uses: actions/checkout@v2

Expand All @@ -29,7 +28,8 @@ jobs:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
${{ runner.os }}-php-${{ matrix.php-versions }}
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"phpunit/phpunit": "^10.1"
},
"scripts": {
"test": "phpunit"
"test": [
"phpunit --no-coverage"
]
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 070d162

Please sign in to comment.