Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,39 @@ Developed with πŸ’™ by [Very Good Ventures][very_good_ventures_link] πŸ¦„

---

> [!WARNING]
> **This project is deprecated.** Very Good Coverage has been superseded by [Very Good Workflows][very_good_workflows_link], which provides a comprehensive suite of reusable GitHub Actions workflows β€” including code coverage enforcement.
>
> Please migrate to [Very Good Workflows][very_good_workflows_link]. See the [Migration Guide](#migration-guide) below.

A GitHub Action which helps enforce a minimum code coverage threshold.

## Migration Guide

Migrate from `VeryGoodOpenSource/very_good_coverage` to [Very Good Workflows][very_good_workflows_link] by replacing your workflow step with the reusable workflow provided in that repository.

**Before:**

```yaml
- name: Very Good Coverage
uses: VeryGoodOpenSource/very_good_coverage@v2
with:
path: '/coverage/lcov.info'
min_coverage: 95
exclude: '**/*_observer.dart **/change.dart'
```

**After:**

```yaml
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
min_coverage: 95
coverage_excludes: '**/*_observer.dart **/change.dart'
```

Refer to the [Very Good Workflows documentation][very_good_workflows_link] for the full list of available inputs and workflow options.

## Inputs

Very Good Coverage accepts the following configuration inputs:
Expand Down Expand Up @@ -86,6 +117,7 @@ jobs:
path: /my_project/coverage/lcov.info
```

[very_good_workflows_link]: https://github.com/VeryGoodOpenSource/very_good_workflows
[ci_badge]: https://github.com/VeryGoodOpenSource/very_good_coverage/workflows/ci/badge.svg
[ci_badge_link]: https://github.com/VeryGoodOpenSource/very_good_coverage/actions
[license_badge]: https://img.shields.io/badge/license-MIT-blue.svg
Expand Down
Loading