From 7e589275652f6f68aeb8e3f0cd0dadedcd10875f Mon Sep 17 00:00:00 2001 From: Maksim Panfilov Date: Fri, 18 Oct 2024 14:46:20 +0300 Subject: [PATCH] Update go.yml --- .github/workflows/go.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 254d8e0..823e4d5 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -29,8 +29,9 @@ jobs: - name: Test run: make test - - name: Update coverage report - uses: ncruces/go-coverage-report@v0 + - name: Upload to Codecov + uses: codecov/codecov-action@v3 with: - coverage-file: cover.out - continue-on-error: true \ No newline at end of file + files: cover.out + flags: unittests + fail_ci_if_error: true