AMR/.github/workflows/codecovr.yaml

67 lines
3.0 KiB
YAML
Raw Normal View History

2020-07-08 14:48:06 +02:00
# ==================================================================== #
# TITLE #
2022-10-05 09:12:22 +02:00
# AMR: An R Package for Working with Antimicrobial Resistance Data #
2020-07-08 14:48:06 +02:00
# #
# SOURCE #
# https://github.com/msberends/AMR #
# #
2022-10-05 09:12:22 +02:00
# CITE AS #
# Berends MS, Luz CF, Friedrich AW, Sinha BNM, Albers CJ, Glasner C #
# (2022). AMR: An R Package for Working with Antimicrobial Resistance #
# Data. Journal of Statistical Software, 104(3), 1-31. #
# doi:10.18637/jss.v104.i03 #
# #
2022-12-27 15:16:15 +01:00
# Developed at the University of Groningen and the University Medical #
# Center Groningen in The Netherlands, in collaboration with many #
# colleagues from around the world, see our website. #
2020-07-08 14:48:06 +02:00
# #
# This R package is free software; you can freely use and distribute #
# it for both personal and commercial purposes under the terms of the #
# GNU General Public License version 2.0 (GNU GPL-2), as published by #
# the Free Software Foundation. #
# We created this package for both routine data analysis and academic #
# research and it was publicly released in the hope that it will be #
# useful, but it comes WITHOUT ANY WARRANTY OR LIABILITY. #
2020-10-08 11:16:03 +02:00
# #
# Visit our website for the full manual and a complete tutorial about #
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
2020-07-08 14:48:06 +02:00
# ==================================================================== #
on:
push:
2022-08-26 23:25:37 +02:00
branches: '**'
2020-07-08 14:48:06 +02:00
pull_request:
2022-08-26 23:25:37 +02:00
branches: '**'
2020-07-08 14:48:06 +02:00
name: code-coverage
2020-07-08 14:48:06 +02:00
jobs:
code-coverage:
2022-08-28 19:17:12 +02:00
runs-on: ubuntu-latest
2020-07-08 14:48:06 +02:00
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
2022-08-28 19:17:12 +02:00
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
2020-07-08 14:48:06 +02:00
steps:
2022-08-26 23:25:37 +02:00
- uses: actions/checkout@v3
2020-07-08 14:48:06 +02:00
2022-08-28 19:17:12 +02:00
- uses: r-lib/actions/setup-pandoc@v2
2021-12-22 09:44:10 +01:00
- uses: r-lib/actions/setup-r@v2
2021-05-22 08:58:51 +02:00
with:
r-version: release
2022-08-28 19:17:12 +02:00
# use RStudio Package Manager to quickly install packages
use-public-rspm: true
2020-07-08 14:48:06 +02:00
2022-08-28 19:17:12 +02:00
- uses: r-lib/actions/setup-r-dependencies@v2
2020-07-08 14:48:06 +02:00
with:
2022-08-28 19:17:12 +02:00
extra-packages: any::covr
2020-07-08 14:48:06 +02:00
- name: Test coverage
2021-05-22 09:22:39 +02:00
env:
2022-08-28 19:17:12 +02:00
R_LIBS_USER_GH_ACTIONS: ${{ env.R_LIBS_USER }}
2021-05-24 15:29:17 +02:00
R_RUN_TINYTEST: true
2021-05-21 20:20:51 +02:00
run: |
2023-01-21 23:47:20 +01:00
x <- covr::codecov(line_exclusions = list("R/atc_online.R", "R/mo_source.R", "R/translate.R", "R/resistance_predict.R", "R/zz_deprecated.R", "R/aa_helper_functions.R", "R/aa_helper_pm_functions.R", "R/zzz.R"))
print(x)
2020-07-08 14:48:06 +02:00
shell: Rscript {0}