mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2026-01-01 03:12:13 +08:00
- Add codecov.yml configuration to exclude 3rdparty, test, and demo directories - Update GitHub Actions workflow with exclude parameter in codecov-action - Ensures only project source code is included in coverage metrics This provides double protection: 1. codecov.yml filters on CodeCov service side 2. workflow exclude filters during upload
31 lines
452 B
YAML
31 lines
452 B
YAML
codecov:
|
|
require_ci_to_pass: yes
|
|
|
|
coverage:
|
|
precision: 2
|
|
round: down
|
|
range: "70...100"
|
|
|
|
status:
|
|
project:
|
|
default:
|
|
target: auto
|
|
threshold: 0%
|
|
base: auto
|
|
patch:
|
|
default:
|
|
target: auto
|
|
threshold: 0%
|
|
base: auto
|
|
|
|
ignore:
|
|
- "3rdparty/**/*"
|
|
- "3rdparty/**"
|
|
- "test/**/*"
|
|
- "demo/**/*"
|
|
|
|
comment:
|
|
layout: "reach,diff,flags,tree"
|
|
behavior: default
|
|
require_changes: false
|