From 6aca4818654f1e6a55e016b6ad443bf504279a54 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 24 Nov 2025 17:52:50 +0100 Subject: [PATCH] Enable Codecov action --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 17c11ca..7242f7b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,9 +32,9 @@ jobs: - name: Run tests with coverage run: make test -# - name: Upload coverage to Codecov -# uses: codecov/codecov-action@v4 -# with: -# file: ./coverage.out -# token: ${{ secrets.CODECOV_TOKEN }} -# fail_ci_if_error: false + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v5 + with: + file: ./coverage.out + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: false