ci: remove Codecov coverage upload from CI workflow
Remove the step that uploads test coverage to Codecov, simplifying the CI pipeline and reducing external dependencies. The coverage file is still generated but no longer sent to the service.
lemon-mint committed
Nov 5, 2025 at 09:35 UTC
8ad387b8fe350a4a28a4cec1c901c54f76ae6132
1 file changed
-7
.github/workflows/ci.yml
-7
@@ -51,13 +51,6 @@ jobs:
51
- name: Run tests
52
run: go test -v -race -coverprofile=coverage.out ./...
53
54
- - name: Upload coverage to Codecov
55
- uses: codecov/codecov-action@v3
56
- with:
57
- file: ./coverage.out
58
- flags: unittests
59
- name: codecov-umbrella
60
-
54
build:
55
name: Build
56
runs-on: ubuntu-latest