You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
380 B

image: rocker/tidyverse
test:
script:
- sudo apt-get -y install libpsl-dev
- R -e 'install.packages(c("testthat", "covr", "Rcpp", "stringi", "knitr", "rmarkdown"))'
- R CMD build . --no-build-vignettes --no-manual
- PKG_FILE_NAME=$(ls -1t *.tar.gz | head -n 1)
- R CMD check "${PKG_FILE_NAME}" --no-build-vignettes --no-manual
- R -e 'devtools::test()'