Skip to content

Commit 41a44b6

Browse files
authored
Merge pull request #265 from laravel-workflow/remove-scrutinizer-coverage
Remove scrutinizer/ocular
2 parents 07c263b + 3320c7f commit 41a44b6

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/php.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,17 @@ jobs:
105105

106106
- name: Code Coverage
107107
run: |
108-
vendor/bin/phpunit --testdox --coverage-clover=coverage.clover --testsuite unit
109-
vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
108+
vendor/bin/phpunit --testdox --coverage-clover=coverage.xml --testsuite unit
110109
env:
111110
APP_KEY: base64:i3g6f+dV8FfsIkcxqd7gbiPn2oXk5r00sTmdD6V5utI=
112111
DB_CONNECTION: sqlite
113112
DB_DATABASE: testbench.sqlite
114113
QUEUE_CONNECTION: sync
115114
XDEBUG_MODE: coverage
115+
116+
- name: Upload coverage to Codecov
117+
uses: codecov/codecov-action@v5
118+
with:
119+
files: ./coverage.xml
120+
fail_ci_if_error: false
121+
token: ${{ secrets.CODECOV_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p align="center">
22
<img alt="logo" src="https://user-images.githubusercontent.com/1130888/210139313-43f0d7ed-2005-4b71-9149-540f124c2c2f.png">
33
</p>
4-
<p align="center"><a href="https://github.com/laravel-workflow/laravel-workflow/actions/workflows/php.yml"><img src="https://img.shields.io/github/actions/workflow/status/laravel-workflow/laravel-workflow/php.yml" alt="GitHub Workflow Status"></a> <a href="https://scrutinizer-ci.com/g/laravel-workflow/laravel-workflow/?branch=master"><img src="https://img.shields.io/scrutinizer/coverage/g/laravel-workflow/laravel-workflow" alt="Scrutinizer coverage (GitHub/BitBucket)"></a> <a href="https://packagist.org/packages/laravel-workflow/laravel-workflow/stats"><img alt="Packagist Downloads (custom server)" src="https://img.shields.io/packagist/dt/laravel-workflow/laravel-workflow"></a>
4+
<p align="center"><a href="https://github.com/laravel-workflow/laravel-workflow/actions/workflows/php.yml"><img src="https://img.shields.io/github/actions/workflow/status/laravel-workflow/laravel-workflow/php.yml" alt="GitHub Workflow Status"></a> <a href="https://codecov.io/gh/laravel-workflow/laravel-workflow"><img src="https://codecov.io/gh/laravel-workflow/laravel-workflow/branch/master/graph/badge.svg" alt="Code Coverage"></a> <a href="https://packagist.org/packages/laravel-workflow/laravel-workflow/stats"><img alt="Packagist Downloads (custom server)" src="https://img.shields.io/packagist/dt/laravel-workflow/laravel-workflow"></a>
55
<a href="https://laravel-workflow.com/docs/installation"><img src="https://img.shields.io/badge/docs-read%20now-brightgreen" alt="Docs"></a> <a href="https://github.com/laravel-workflow/laravel-workflow/blob/master/LICENSE"><img alt="Packagist License" src="https://img.shields.io/packagist/l/laravel-workflow/laravel-workflow?color=bright-green"></a></p>
66

77
Laravel Workflow is a package for the Laravel web framework that provides tools for defining and managing workflows and activities. A workflow is a series of interconnected activities that are executed in a specific order to achieve a desired result. Activities are individual tasks or pieces of logic that are executed as part of a workflow.

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"require-dev": {
5555
"orchestra/testbench": "^8.0",
5656
"phpstan/phpstan": "^2.0",
57-
"scrutinizer/ocular": "dev-master",
5857
"symplify/easy-coding-standard": "^11.0"
5958
},
6059
"extra": {

0 commit comments

Comments
 (0)