ci: replace codecov upload with coverage summary display
All checks were successful
CI / Test (push) Successful in 25s
CI / Lint (push) Successful in 19s
CI / Build (push) Successful in 15s

Remove the Codecov action for uploading coverage reports and instead add a step to display a summary of test coverage in the CI output.
This commit is contained in:
Greg Gauthier 2026-03-01 14:35:27 +00:00
parent db92750d12
commit b8906e44c1

View File

@ -36,11 +36,9 @@ jobs:
run: | run: |
go test -v -race -coverprofile=coverage.out ./... go test -v -race -coverprofile=coverage.out ./...
- name: Upload coverage - name: Display coverage summary
uses: codecov/codecov-action@v4 run: |
with: go tool cover -func=coverage.out | tail -1
file: ./coverage.out
fail_ci_if_error: false
lint: lint:
name: Lint name: Lint