From 1c69fc2908c4519b7dbca447d5e4b28b80a12b50 Mon Sep 17 00:00:00 2001 From: Kowser Date: Wed, 5 Aug 2026 23:16:52 -0700 Subject: [PATCH] Remove code coverage from codecov --- .github/workflows/ci.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba9298a..fbbcb6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: go build -x -v -ldflags "-X github.com/conductor-oss/conductor-cli/cmd.Version=${VERSION} -X github.com/conductor-oss/conductor-cli/cmd.Commit=${COMMIT} -X github.com/conductor-oss/conductor-cli/cmd.Date=${DATE}" ./... - name: Run tests - run: go test -v -race -coverprofile=coverage.out -covermode=atomic -json ./... > test-results.json + run: go test -v -race -json ./... > test-results.json - name: Convert test results to JUnit format if: always() @@ -47,10 +47,3 @@ jobs: name: Go Tests path: test-results.xml reporter: java-junit - - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 - with: - file: coverage.out - flags: unittests - name: codecov-umbrella