From 5e5234aaddb3df4621026a114da79ff3d915977b Mon Sep 17 00:00:00 2001 From: Mike Nguyen Date: Fri, 12 Dec 2025 12:21:22 +0000 Subject: [PATCH 1/2] fix(ci): update codecov config Signed-off-by: Mike Nguyen --- .codecov.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.codecov.yaml b/.codecov.yaml index 41295cc8..d0f79696 100644 --- a/.codecov.yaml +++ b/.codecov.yaml @@ -2,12 +2,14 @@ coverage: # See https://docs.codecov.io/docs/commit-status status: project: - default: false + default: false # disables the overall project status client: - paths: "client/" + paths: + - "client/" threshold: 2% # don't allow coverage to drop on client service: - paths: "service" + paths: + - "service" threshold: 2% # allow coverage to drop on service by 2% (wip) ignore: - "dapr/proto/**" From 65e111bc9e521feeabab03f7b82dd8cd8986f8b7 Mon Sep 17 00:00:00 2001 From: Mike Nguyen Date: Fri, 12 Dec 2025 12:26:47 +0000 Subject: [PATCH 2/2] chore(ci): bump codecov action version Signed-off-by: Mike Nguyen --- .github/workflows/test-on-push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-on-push.yaml b/.github/workflows/test-on-push.yaml index 617ece29..ac51a424 100644 --- a/.github/workflows/test-on-push.yaml +++ b/.github/workflows/test-on-push.yaml @@ -31,7 +31,7 @@ jobs: run: make test - name: Cover - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 - name: Lint uses: golangci/golangci-lint-action@v6