From 60f02347071450abb439747534c41a65d84d85f6 Mon Sep 17 00:00:00 2001 From: Takuma Kajikawa Date: Sat, 9 Aug 2025 22:13:24 +0900 Subject: [PATCH 1/2] docs: Add Codecov badge to README Add code coverage badge to display test coverage status from Codecov --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a0077e5..3124787 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # PHP Result ![Packagist Version](https://img.shields.io/packagist/v/valbeat/result) +[![codecov](https://codecov.io/gh/valbeat/php-result/branch/main/graph/badge.svg?token=B1P4MQMP7J)](https://codecov.io/gh/valbeat/php-result) A Result type implementation for PHP inspired by Rust's `Result` type. From efdbbcbcf7efff7f8cc6b6aa75bacca57cc3b58e Mon Sep 17 00:00:00 2001 From: Takuma Kajikawa Date: Sat, 9 Aug 2025 22:14:53 +0900 Subject: [PATCH 2/2] Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3124787..f73a3fb 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # PHP Result ![Packagist Version](https://img.shields.io/packagist/v/valbeat/result) -[![codecov](https://codecov.io/gh/valbeat/php-result/branch/main/graph/badge.svg?token=B1P4MQMP7J)](https://codecov.io/gh/valbeat/php-result) +[![codecov](https://codecov.io/gh/valbeat/php-result/branch/main/graph/badge.svg)](https://codecov.io/gh/valbeat/php-result) A Result type implementation for PHP inspired by Rust's `Result` type.