Skip to content

Commit 25eccad

Browse files
committed
Changed CI
1 parent 061763c commit 25eccad

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

.github/workflows/run-tests.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,12 @@ jobs:
4949
with:
5050
php-version: ${{ matrix.php }}
5151
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, zlib, fileinfo
52-
coverage: xdebug
52+
coverage: none
5353
tools: composer:v2
5454

5555
- name: Install dependencies
5656
run: |
57-
composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
5857
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
5958
6059
- name: Execute tests
6160
run: vendor/bin/phpunit
62-
63-
- name: Codecov
64-
uses: codecov/codecov-action@v4
65-
with:
66-
token: ${{ secrets.CODECOV_TOKEN }}

phpunit.xml.dist

-8
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,6 @@
33
colors="true" processIsolation="false" stopOnFailure="false" stopOnError="false"
44
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache"
55
backupStaticProperties="false">
6-
<coverage>
7-
<include>
8-
<directory suffix=".php">./src</directory>
9-
</include>
10-
<report>
11-
<clover outputFile="clover.xml"/>
12-
</report>
13-
</coverage>
146
<testsuites>
157
<testsuite name="Unit">
168
<directory suffix="Test.php">./tests</directory>

0 commit comments

Comments
 (0)