From 49c4c7a455dedad30ca22d45be52e2049bca0c75 Mon Sep 17 00:00:00 2001 From: Stavros Date: Fri, 4 Jul 2025 01:48:38 +0300 Subject: [PATCH] feat: add codeconv to ci --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eab454c..ba63419 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,4 +39,9 @@ jobs: cp -r frontend/dist internal/assets/dist - name: Run tests - run: go test -v ./... + run: go test -coverprofile=coverage.txt -v ./... + + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }}