diff --git a/.github/workflows/cargo_llvm_cov.yml b/.github/workflows/cargo_llvm_cov.yml index 9dba6f25e3c..f691ff0fe94 100644 --- a/.github/workflows/cargo_llvm_cov.yml +++ b/.github/workflows/cargo_llvm_cov.yml @@ -129,12 +129,11 @@ jobs: flag-name: nextest+simtest fail-on-error: true - # - name: Upload coverage data to Codecov - # uses: codecov/codecov-action@v5 - # with: - # # TODO token required because of branch protection (https://docs.codecov.com/docs/codecov-tokens#uploading-without-a-token) - # files: target/lcov.info - # flags: nextest+simtest - # disable_search: true - # fail_ci_if_error: true - # verbose: true + - name: Upload coverage data to Codecov + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: target/lcov.info + flags: nextest+simtest + fail_ci_if_error: true + verbose: true