From ffcdf9bd825b582fc4f027148a5ae7eb97188606 Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Merino Date: Thu, 12 Mar 2026 15:07:54 +0100 Subject: [PATCH] Add Datadog code coverage upload alongside Codecov Side-by-side coverage reporting: adds Datadog coverage upload step after the existing Codecov upload in the coverage workflow. Uses the DataDog/coverage-upload-github-action with LCOV format. Both systems will run in parallel for comparison. --- .github/workflows/coverage.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index f9375476f5..815004d8aa 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -50,3 +50,11 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: lcov.info fail_ci_if_error: true + - name: Upload coverage to Datadog + if: always() + continue-on-error: true + uses: DataDog/coverage-upload-github-action@v1 + with: + api_key: ${{ secrets.DATADOG_API_KEY }} + files: lcov.info + format: lcov