From bedbb121e4c324dafe1d18de32946a8cd19814cc Mon Sep 17 00:00:00 2001 From: binwiederhier Date: Mon, 2 Mar 2026 20:05:29 -0500 Subject: [PATCH] Remove codecov.io --- .github/workflows/test.yaml | 2 -- Makefile | 4 ---- 2 files changed, 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2722d144..8d80b960 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -42,5 +42,3 @@ jobs: run: make checkv - name: Run coverage run: make coverage - - name: Upload coverage to codecov.io - run: make coverage-upload diff --git a/Makefile b/Makefile index 3683ab3c..997ea54c 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,6 @@ help: @echo " make race - Run tests with -race flag" @echo " make coverage - Run tests and show coverage" @echo " make coverage-html - Run tests and show coverage (as HTML)" - @echo " make coverage-upload - Upload coverage results to codecov.io" @echo @echo "Lint/format:" @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 tool cover -html build/coverage/coverage.txt -coverage-upload: - cd build/coverage && (curl -s https://codecov.io/bash | bash) - # Lint/formatting targets