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.

8 lines
349 B

image: rocker/tidyverse
test:
script:
- R -e 'install.packages(c("viridis", "knitr", "rmarkdown", "testthat", "RColorBrewer", "covr"))'
- 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()'