From 4b7609057cd0eb2d51c43e10dbc22b05962fb0f8 Mon Sep 17 00:00:00 2001 From: Barbara Vreede Date: Fri, 6 Oct 2023 16:23:37 +0200 Subject: [PATCH 1/2] add badges to readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 3830015..a86352d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ +[![R-CMD-check](https://github.com/elpaco-escience/talkr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/elpaco-escience/talkr/actions/workflows/R-CMD-check.yaml) [![codecov](https://codecov.io/github/elpaco-escience/talkr/graph/badge.svg?token=MTA2S1LLGH)](https://codecov.io/github/elpaco-escience/talkr) + # talkr + {talkr} offers a set of convenience functions for quality control, visualisation and analysis of conversational data. It provides support for at least two common needs of people working with conversational corpora: (1) quality control by offering rapid insights into the nature, timing, and quality of time-aligned annotations in a conversational corpus; and (2) compelling visualisations by offering a range of plotting functions that play well with ggplot and the tidyverse. Note: {talkr} plays well with its companion python package `scikit-talk`, which is focused more on processing conversational data and readying it for downstream analysis. From d00f3dead8ba31a4955009e4d8f1cba0ebc5963a Mon Sep 17 00:00:00 2001 From: Barbara Vreede Date: Fri, 6 Oct 2023 16:23:49 +0200 Subject: [PATCH 2/2] actually run codecov to generate report --- .github/workflows/test-coverage.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 0a97503..c3c18c3 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -27,6 +27,15 @@ jobs: extra-packages: any::covr needs: coverage + - name: Generate coverage report + run: | + covr::codecov( + quiet = FALSE, + clean = FALSE, + install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package") + ) + shell: Rscript {0} + - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 env: