From efd5e072db31b9b9a4dcef3694719644a95ff49e Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Thu, 26 Feb 2026 10:55:51 -0700 Subject: [PATCH 1/2] chore: migrate to codecov --- .github/workflows/ci.yml | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be6150b4..618eac9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,12 +24,12 @@ jobs: run: just install - name: run tests run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just test - - name: Coveralls + - name: Coverage if: github.ref == 'refs/heads/master' - uses: coverallsapp/github-action@master + uses: codecov/codecov-action@v5 with: - github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: './coverage/lcov/easypost-ruby.lcov' + token: ${{ secrets.CODECOV_TOKEN }} + directory: './coverage/lcov' lint: runs-on: ubuntu-latest steps: diff --git a/README.md b/README.md index a93d4ec2..34ace97f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # EasyPost Ruby Client Library [![Build Status](https://github.com/EasyPost/easypost-ruby/workflows/CI/badge.svg)](https://github.com/EasyPost/easypost-ruby/actions?query=workflow%3ACI) -[![Coverage Status](https://coveralls.io/repos/github/EasyPost/easypost-ruby/badge.svg?branch=master)](https://coveralls.io/github/EasyPost/easypost-ruby?branch=master) +[![codecov](https://codecov.io/gh/EasyPost/easypost-ruby/graph/badge.svg?token=NuKtbPVJMX)](https://codecov.io/gh/EasyPost/easypost-ruby) [![Gem Version](https://badge.fury.io/rb/easypost.svg)](https://badge.fury.io/rb/easypost) EasyPost, the simple shipping solution. You can sign up for an account at . From a998313fd9b4736853b01d4188af091b942bc099 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Thu, 26 Feb 2026 11:13:21 -0700 Subject: [PATCH 2/2] fix: remove explicit directory --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 618eac9d..5d422ff3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,6 @@ jobs: uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} - directory: './coverage/lcov' lint: runs-on: ubuntu-latest steps: