diff options
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 7f7e85c..59f3835 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -16,7 +16,10 @@ install: build "$(RBIN)/R" CMD INSTALL $(TGZ) check: build - "$(RBIN)/R" CMD check --as-cran --no-tests $(TGZ) 2>&1 | tee check.log + "$(RBIN)/R" CMD check --as-cran $(TGZ) 2>&1 | tee check.log + +quickcheck: build + "$(RBIN)/R" CMD check $(TGZ) 2>&1 | tee check.log pd: "$(RBIN)/Rscript" -e "pkgdown::build_site()" |