From 314228f730a4840bc1e04d50aa24eef917c4d2f7 Mon Sep 17 00:00:00 2001 From: Dimitri Falk Date: Thu, 19 Dec 2024 18:39:18 +0100 Subject: [PATCH] GHA --- .github/workflows/test-coverage.yaml | 61 ++++++++++++++++++++++++++++ DESCRIPTION | 2 +- README.Rmd | 4 +- README.md | 4 +- 4 files changed, 65 insertions(+), 6 deletions(-) create mode 100644 .github/workflows/test-coverage.yaml diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml new file mode 100644 index 0000000..e050312 --- /dev/null +++ b/.github/workflows/test-coverage.yaml @@ -0,0 +1,61 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + +name: test-coverage.yaml + +permissions: read-all + +jobs: + test-coverage: + runs-on: ubuntu-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::covr, any::xml2 + needs: coverage + + - name: Test coverage + run: | + cov <- covr::package_coverage( + quiet = FALSE, + clean = FALSE, + install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package") + ) + covr::to_cobertura(cov) + shell: Rscript {0} + + - uses: codecov/codecov-action@v4 + with: + # Fail if error if not on PR, or if on PR and token is given + fail_ci_if_error: ${{ github.event_name != 'pull_request' || secrets.CODECOV_TOKEN }} + file: ./cobertura.xml + plugin: noop + disable_search: true + token: ${{ secrets.CODECOV_TOKEN }} + + - name: Show testthat output + if: always() + run: | + ## -------------------------------------------------------------------- + find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true + shell: bash + + - name: Upload test results + if: failure() + uses: actions/upload-artifact@v4 + with: + name: coverage-test-failures + path: ${{ runner.temp }}/package diff --git a/DESCRIPTION b/DESCRIPTION index a8abe07..c39540b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: kostra2020 Title: R Interface for KOSTRA-DWD-2020 Dataset Version: 1.5.2 -Date: 2024-12-04 +Date: 2024-12-19 Authors@R: person("Dimitri", "Falk", , "falk.dimitri@eglv.de", role = c("aut", "cre")) Description: Extract cell-specific precipitation statistics from KOSTRA-DWD-2020. diff --git a/README.Rmd b/README.Rmd index 09aeac5..71f7aa6 100644 --- a/README.Rmd +++ b/README.Rmd @@ -17,8 +17,8 @@ knitr::opts_chunk$set( -[![R-CMD-check](https://github.com/dimfalk/kostra2020/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/dimfalk/kostra2020/actions/workflows/R-CMD-check.yaml) [![Codecov test coverage](https://codecov.io/gh/dimfalk/kostra2020/branch/main/graph/badge.svg)](https://app.codecov.io/gh/dimfalk/kostra2020?branch=main) - +[![R-CMD-check](https://github.com/dimfalk/kostra2020/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/dimfalk/kostra2020/actions/workflows/R-CMD-check.yaml) +[![Codecov](https://codecov.io/gh/dimfalk/kostra2020/graph/badge.svg)](https://app.codecov.io/gh/dimfalk/kostra2020) --- As of 01.01.2023, kostra2020 officially replaces [kostra2010R](https://github.com/dimfalk/kostra2010R). --- diff --git a/README.md b/README.md index 515af1e..0e8e9d3 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,7 @@ [![R-CMD-check](https://github.com/dimfalk/kostra2020/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/dimfalk/kostra2020/actions/workflows/R-CMD-check.yaml) -[![Codecov test -coverage](https://codecov.io/gh/dimfalk/kostra2020/branch/main/graph/badge.svg)](https://app.codecov.io/gh/dimfalk/kostra2020?branch=main) - +[![Codecov](https://codecov.io/gh/dimfalk/kostra2020/graph/badge.svg)](https://app.codecov.io/gh/dimfalk/kostra2020) — As of 01.01.2023, kostra2020 officially replaces