diff --git a/.github/DOCS.md b/.github/DOCS.md index bc8f9bbd..953f162f 100644 --- a/.github/DOCS.md +++ b/.github/DOCS.md @@ -30,3 +30,10 @@ As we don't run on nightly, we don't really need to check whether nightly breaks [source](https://crates.io/crates/loom) Loom is great and it's backed by Tokio, but it would mean a bigger investment in making the threads we use be loom specific. Definitely something to iterate on, as we get onto Async Emacs. + +### codecov.io +> Enhance Your Testing the Codecov Way: Codecov is the all-in-one code coverage reporting solution for any test suite — giving developers actionable insights to deploy reliable code with confidence. + +[source](https://about.codecov.io), [repo of Github Action](https://github.com/codecov/codecov-action) + +If we want to add a badge or have nice reports on coverage, we could investigate CodeCov. It requires a token that should be added to the secrets of the repository: `CODECOV_TOKEN`. diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b011cee0..87b408ae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -133,7 +133,3 @@ jobs: run: cargo generate-lockfile - name: cargo llvm-cov run: cargo llvm-cov --locked --all-features --lcov --output-path lcov.info - - name: Upload to codecov.io - uses: codecov/codecov-action@v3 - with: - fail_ci_if_error: true