diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5cf5c66..a6b73c6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -79,3 +79,10 @@ jobs: with: name: ${{ runner.os }}-r${{ matrix.config.r }}-results path: check + + - name: Test coverage + if: success() && runner.os == 'Linux' && matrix.config.r == 'release' + run: | + remotes::install_cran("covr") + covr::codecov(type = "all") + shell: Rscript {0}