AMR/.github/workflows/check.yaml

160 lines
9.0 KiB
YAML
Raw Normal View History

2020-07-08 14:48:06 +02:00
# ==================================================================== #
# TITLE #
# Antimicrobial Resistance (AMR) Data Analysis for R #
2020-07-08 14:48:06 +02:00
# #
# SOURCE #
# https://github.com/msberends/AMR #
# #
# LICENCE #
2020-12-27 00:30:28 +01:00
# (c) 2018-2021 Berends MS, Luz CF et al. #
2020-10-08 11:16:03 +02:00
# Developed at the University of Groningen, the Netherlands, in #
# collaboration with non-profit organisations Certe Medical #
# Diagnostics & Advice, and University Medical Center Groningen. #
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:
branches:
- premaster
- master
pull_request:
branches:
- master
schedule:
# run a schedule everyday at 3 AM.
# this is to check that all dependencies are still available (see R/zzz.R)
- cron: '0 3 * * *'
2020-07-08 14:48:06 +02:00
2020-07-08 20:43:25 +02:00
name: R-code-check
2020-07-08 14:48:06 +02:00
jobs:
2020-07-08 20:43:25 +02:00
R-code-check:
2020-07-08 14:48:06 +02:00
runs-on: ${{ matrix.config.os }}
continue-on-error: ${{ matrix.config.allowfail }}
2020-07-08 14:48:06 +02:00
name: ${{ matrix.config.os }} (R-${{ matrix.config.r }})
2020-07-08 14:48:06 +02:00
strategy:
fail-fast: false
matrix:
config:
2021-05-04 12:47:33 +02:00
- {os: macOS-latest, r: 'devel', allowfail: true}
2020-10-27 15:56:51 +01:00
- {os: macOS-latest, r: 'release', allowfail: false}
2021-05-16 10:50:00 +02:00
- {os: macOS-latest, r: 'oldrel', allowfail: true}
2020-10-27 15:56:51 +01:00
- {os: windows-latest, r: 'devel', allowfail: false}
- {os: windows-latest, r: 'release', allowfail: false}
- {os: windows-latest, r: 'oldrel', allowfail: false}
- {os: ubuntu-20.04, r: 'devel', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: 'release', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: 'oldrel', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: '4.0', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: '3.6', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: '3.5', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: '3.4', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
2021-04-16 12:02:57 +02:00
- {os: ubuntu-20.04, r: '3.3', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
2021-05-13 21:54:15 +02:00
- {os: ubuntu-20.04, r: '3.2', allowfail: true, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: '3.1', allowfail: true, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
2021-04-16 11:41:05 +02:00
- {os: ubuntu-20.04, r: '3.0', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-16.04, r: 'devel', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2020-10-27 15:56:51 +01:00
- {os: ubuntu-16.04, r: 'release', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
- {os: ubuntu-16.04, r: 'oldrel', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2020-10-27 15:56:51 +01:00
- {os: ubuntu-16.04, r: '4.0', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
- {os: ubuntu-16.04, r: '3.6', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
- {os: ubuntu-16.04, r: '3.5', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
- {os: ubuntu-16.04, r: '3.4', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2021-04-16 11:41:05 +02:00
- {os: ubuntu-16.04, r: '3.3', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2021-05-13 22:44:11 +02:00
- {os: ubuntu-16.04, r: '3.2', allowfail: true, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
- {os: ubuntu-16.04, r: '3.1', allowfail: true, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2021-04-16 11:41:05 +02:00
- {os: ubuntu-16.04, r: '3.0', allowfail: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2021-05-15 21:36:22 +02:00
2020-07-08 14:48:06 +02:00
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
RSPM: ${{ matrix.config.rspm }}
steps:
- uses: actions/checkout@v2
2021-05-16 09:25:36 +02:00
- uses: r-lib/actions/setup-r@v1
2020-07-08 14:48:06 +02:00
with:
r-version: ${{ matrix.config.r }}
2021-05-13 19:31:47 +02:00
- name: Install Linux dependencies
if: runner.os == 'Linux'
# update the below with sysreqs::sysreqs("DESCRIPTION") and check the "DEB" entries (for Ubuntu).
# we don't want to depend on the sysreqs pkg here, as it requires a quite new R version
2021-05-18 00:53:04 +02:00
# as of May 2021: https://sysreqs.r-hub.io/pkg/AMR,R,cleaner,curl,dplyr,ggplot2,ggtext,knitr,microbenchmark,pillar,readxl,rmarkdown,rstudioapi,rvest,skimr,tidyr,tinytest,xml2,backports,crayon,rlang,vctrs,evaluate,highr,markdown,stringr,yaml,xfun,cli,ellipsis,fansi,lifecycle,utf8,glue,mime,magrittr,stringi,generics,R6,tibble,tidyselect,pkgconfig,purrr,digest,gtable,isoband,MASS,mgcv,scales,withr,nlme,Matrix,farver,labeling,munsell,RColorBrewer,viridisLite,lattice,colorspace,gridtext,Rcpp,RCurl,png,jpeg,bitops,cellranger,progress,rematch,hms,prettyunits,htmltools,jsonlite,tinytex,base64enc,httr,selectr,openssl,askpass,sys,repr,cpp11
2020-07-08 14:48:06 +02:00
run: |
2021-05-18 00:53:04 +02:00
sudo apt install -y libssl-dev pandoc pandoc-citeproc libxml2-dev libicu-dev libcurl4-openssl-dev libpng-dev
2020-07-08 14:48:06 +02:00
2021-05-16 09:25:36 +02:00
- name: Restore cached R packages
# this step will add the step 'Post Restore cached R packages' on a succesful run
2021-05-15 22:35:57 +02:00
if: runner.os != 'Windows'
2021-05-15 21:36:22 +02:00
uses: actions/cache@v1
with:
path: ${{ env.R_LIBS_USER }}
2021-05-16 10:50:00 +02:00
key: ${{ matrix.config.os }}-r-${{ matrix.config.r }}-v4
2020-07-08 14:48:06 +02:00
2021-05-17 11:26:12 +02:00
- name: Install AMR and tinytest and update dependencies
2021-05-15 22:30:11 +02:00
run: |
source("data-raw/_install_deps.R")
shell: Rscript {0}
2021-05-16 09:25:36 +02:00
- name: Show session info
2020-07-08 14:48:06 +02:00
run: |
options(width = 100)
2020-12-29 21:23:01 +01:00
utils::sessionInfo()
as.data.frame(utils::installed.packages())[, "Version", drop = FALSE]
2020-07-08 14:48:06 +02:00
shell: Rscript {0}
2021-05-18 00:53:04 +02:00
- name: Unpack shipped version and remove vignettes
if: always()
2021-05-13 19:31:47 +02:00
run: |
2021-05-13 20:49:47 +02:00
tar -xf data-raw/AMR_latest.tar.gz
2021-05-13 21:16:22 +02:00
rm -rf AMR/vignettes
2021-05-18 01:05:44 +02:00
Rscript -e "writeLines(readLines('AMR/DESCRIPTION')[!grepl('VignetteBuilder', readLines('AMR/DESCRIPTION'))], 'AMR/DESCRIPTION')"
2021-05-20 00:07:27 +02:00
Rscript -e "writeLines(readLines('AMR/DESCRIPTION')[gsub(' +', '', readLines('AMR/DESCRIPTION')) != ''], 'AMR/DESCRIPTION')"
2021-05-19 22:55:42 +02:00
find AMR -name 'DESCRIPTION' -exec cat '{}' \; || true
2021-05-13 20:49:47 +02:00
shell: bash
2021-05-18 00:53:04 +02:00
- name: Run R CMD check
2020-12-29 21:23:01 +01:00
env:
_R_CHECK_CRAN_INCOMING_: false
_R_CHECK_FORCE_SUGGESTS_: false
2021-04-12 12:35:13 +02:00
_R_CHECK_DEPENDS_ONLY_: true
2020-12-31 13:44:58 +01:00
_R_CHECK_LENGTH_1_CONDITION_: verbose
_R_CHECK_LENGTH_1_LOGIC2_: verbose
2021-05-16 09:25:36 +02:00
# during 'R CMD check', R_LIBS_USER will be overwritten, so:
R_LIBS_USER_GH_ACTIONS: ${{ env.R_LIBS_USER }}
R_RUN_TINYTEST: true
2020-12-29 21:23:01 +01:00
run: |
2021-05-18 11:29:31 +02:00
R CMD check --no-manual --no-vignettes --no-build-vignettes --ignore-vignettes AMR
2021-05-13 20:49:47 +02:00
shell: bash
2020-07-08 14:48:06 +02:00
2021-05-15 22:30:11 +02:00
- name: Show unit tests output
2020-07-08 14:48:06 +02:00
if: always()
2021-05-13 21:16:22 +02:00
run: |
2021-05-15 22:30:11 +02:00
find . -name 'tinytest.Rout*' -exec cat '{}' \; || true
2020-07-08 14:48:06 +02:00
shell: bash
2021-05-16 09:25:36 +02:00
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v2
2020-07-08 14:48:06 +02:00
with:
2021-05-16 09:25:36 +02:00
name: artifacts-${{ matrix.config.os }}-r${{ matrix.config.r }}
2021-05-13 22:44:59 +02:00
path: AMR.Rcheck