From 67e13c835314d84a5dcc3489c45a6152512f4cf3 Mon Sep 17 00:00:00 2001 From: Todd Short Date: Wed, 7 May 2025 10:23:17 -0400 Subject: [PATCH] Ease CI requirements for go-verdiff and codecov 1) Remove path from now-required go-verdiff CI We're experiencing a weird behavior with this CI being required, and running only on certain paths. 2) Add a 2% threshold for codecov Signed-off-by: Todd Short --- .github/workflows/go-verdiff.yaml | 3 --- codecov.yml | 5 +++++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-verdiff.yaml b/.github/workflows/go-verdiff.yaml index 305f77314..27773799c 100644 --- a/.github/workflows/go-verdiff.yaml +++ b/.github/workflows/go-verdiff.yaml @@ -1,9 +1,6 @@ name: go-verdiff on: pull_request: - paths: - - '**.mod' - - '.github/workflows/go-verdiff.yaml' branches: - main jobs: diff --git a/codecov.yml b/codecov.yml index 7ea9929a5..4027f28d7 100644 --- a/codecov.yml +++ b/codecov.yml @@ -5,6 +5,11 @@ codecov: # Configure the paths to include in coverage reports. # Exclude documentation, YAML configurations, and test files. coverage: + status: + project: + default: + target: auto + threshold: 2% paths: - "api/" - "cmd/"