Skip to content

Commit 8b9e2ea

Browse files
fix(ci): remove coverage requirement from CI workflow
1 parent a8471b3 commit 8b9e2ea

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
tests:
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
php: ['8.1', '8.2', '8.3', '8.4']
1516
laravel: ['10.*', '11.*', '12.*']
@@ -28,15 +29,15 @@ jobs:
2829
uses: shivammathur/setup-php@v2
2930
with:
3031
php-version: ${{ matrix.php }}
31-
coverage: xdebug
32+
coverage: none
3233

3334
- name: Install dependencies
3435
run: |
3536
composer require "illuminate/support:${{ matrix.laravel }}" --no-update
3637
composer install --no-interaction --prefer-dist
3738
3839
- name: Run tests
39-
run: vendor/bin/phpunit --coverage-text
40+
run: vendor/bin/phpunit --no-coverage
4041

4142
code-style:
4243
runs-on: ubuntu-latest
@@ -45,5 +46,6 @@ jobs:
4546
- uses: shivammathur/setup-php@v2
4647
with:
4748
php-version: '8.3'
49+
coverage: none
4850
- run: composer install --no-interaction
49-
- run: vendor/bin/phpunit --testdox
51+
- run: vendor/bin/phpunit --no-coverage --testdox

0 commit comments

Comments
 (0)