mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
Attempting to fix the state of codecov action checks right now, which are behaving very erratically. Using the new functionality in Go 1.20 to merge multiple reports, so now the unit & E2E coverage data reports are stored as artifacts and then downloaded, merged, and finally uploaded to codecov as a new job. Additionally, add a `codecov.yml` config and try to turn down the aggressiveness of it for CI checks. Signed-off-by: Milas Bowman <milas.bowman@docker.com>
22 lines
296 B
YAML
22 lines
296 B
YAML
coverage:
|
|
status:
|
|
project:
|
|
default:
|
|
informational: true
|
|
target: auto
|
|
threshold: 2%
|
|
patch:
|
|
default:
|
|
informational: true
|
|
|
|
comment:
|
|
require_changes: true
|
|
|
|
ignore:
|
|
- "packaging"
|
|
- "docs"
|
|
- "bin"
|
|
- "e2e"
|
|
- "pkg/e2e"
|
|
- "**/*_test.go"
|