diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a071637..74d09ee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,3 +30,13 @@ jobs: - name: Test run: | make test + + - name: Upload Code Coverage Profile + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + files: unit.coverprofile + flags: unittests + fail_ci_if_error: true + verbose: false