Remove codecov.io

This commit is contained in:
binwiederhier
2026-03-02 20:05:29 -05:00
parent c4b8cfa756
commit bedbb121e4
2 changed files with 0 additions and 6 deletions

View File

@@ -42,5 +42,3 @@ jobs:
run: make checkv run: make checkv
- name: Run coverage - name: Run coverage
run: make coverage run: make coverage
- name: Upload coverage to codecov.io
run: make coverage-upload

View File

@@ -56,7 +56,6 @@ help:
@echo " make race - Run tests with -race flag" @echo " make race - Run tests with -race flag"
@echo " make coverage - Run tests and show coverage" @echo " make coverage - Run tests and show coverage"
@echo " make coverage-html - Run tests and show coverage (as HTML)" @echo " make coverage-html - Run tests and show coverage (as HTML)"
@echo " make coverage-upload - Upload coverage results to codecov.io"
@echo @echo
@echo "Lint/format:" @echo "Lint/format:"
@echo " make fmt - Run 'go fmt'" @echo " make fmt - Run 'go fmt'"
@@ -286,9 +285,6 @@ coverage-html:
go test -race -coverprofile=build/coverage/coverage.txt -covermode=atomic $(shell go list ./... | grep -vE 'ntfy/(test|examples|tools)') go test -race -coverprofile=build/coverage/coverage.txt -covermode=atomic $(shell go list ./... | grep -vE 'ntfy/(test|examples|tools)')
go tool cover -html build/coverage/coverage.txt go tool cover -html build/coverage/coverage.txt
coverage-upload:
cd build/coverage && (curl -s https://codecov.io/bash | bash)
# Lint/formatting targets # Lint/formatting targets