From a022e80cb8c810be8d50d8ae4768ebb594e6a9b2 Mon Sep 17 00:00:00 2001 From: Alexei Ledenev Date: Sun, 16 Mar 2025 23:45:03 +0200 Subject: [PATCH] fix upload coverage from master --- .github/workflows/release.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 29533f25..70553e65 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -32,6 +32,16 @@ jobs: go-version: '1.24' cache: true cache-dependency-path: go.sum + - name: Run Lint and Test Coverage + shell: bash + run: | + make lint + make test-coverage + - name: Upload Coverage to Codecov + uses: codecov/codecov-action@v5 + with: + files: ".cover/coverage.xml" + token: ${{ secrets.CODECOV_TOKEN }} - name: Build Release Binaries env: GOPROXY: https://proxy.golang.org