diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 76833e7f0..759720e97 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -520,6 +520,13 @@ jobs: name: combined-coverage-results path: .coverage-combined retention-days: 7 + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + files: .coverage-combined/xml + package: name: Package library diff --git a/codecov.yml b/codecov.yml index 48f5ccbf3..ee8b84990 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,5 +1,3 @@ -ignore: - comment: layout: "diff" behavior: default diff --git a/doc/changelog.d/692.changed.md b/doc/changelog.d/692.changed.md new file mode 100644 index 000000000..dfb5e7d2d --- /dev/null +++ b/doc/changelog.d/692.changed.md @@ -0,0 +1 @@ +Maint: Add code cov report \ No newline at end of file