2224def963
- Add coverage job using cargo-llvm-cov (faster than cargo-tarpaulin) - Configure Codecov settings with 80% target coverage - Ignore test files and utilities from coverage analysis - Add CI and coverage badges to README - Upload LCOV format reports to Codecov 🤖 Generated with [Claude Code](https://claude.ai/code)
21 lines
334 B
YAML
21 lines
334 B
YAML
coverage:
|
|
status:
|
|
project:
|
|
default:
|
|
target: 80%
|
|
threshold: 1%
|
|
patch:
|
|
default:
|
|
target: 80%
|
|
threshold: 1%
|
|
|
|
ignore:
|
|
- "tests/"
|
|
- "examples/"
|
|
- "benches/"
|
|
- "generate_all_ascii_titles.rs"
|
|
|
|
comment:
|
|
layout: "reach,diff,flags,tree"
|
|
behavior: default
|
|
require_changes: false |