Skip to content

Commit 16ac363

Browse files
committed
update makefile
1 parent ece3d27 commit 16ac363

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: srr
22
Title: 'rOpenSci' Review Roclets
3-
Version: 0.1.4.011
3+
Version: 0.1.4.012
44
Authors@R:
55
person("Mark", "Padgham", , "mark@ropensci.org", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265"))

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"codeRepository": "https://github.com/ropensci-review-tools/srr",
99
"issueTracker": "https://github.com/ropensci-review-tools/srr/issues",
1010
"license": "https://spdx.org/licenses/MIT",
11-
"version": "0.1.4.011",
11+
"version": "0.1.4.012",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",

makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,16 @@ knitr: $(LFILE).Rmd ## Render README as markdown
2424
open: ## Open main HTML vignette in browser
2525
xdg-open docs/articles/$(VIGNETTE).html &
2626

27-
check: ## Run pkgcheck
27+
allcon: ## Run 'allcontributors::add_contributors'
28+
Rscript -e 'allcontributors::add_contributors()'
29+
30+
check: ## Run `rcmdcheck`
31+
Rscript -e 'rcmdcheck::rcmdcheck()'
32+
33+
test: ## Run test suite
34+
Rscript -e 'testthat::test_local()'
35+
36+
pkgcheck: ## Run `pkgcheck` and print results to screen.
2837
Rscript -e 'library(pkgcheck); checks <- pkgcheck(); print(checks); summary (checks)'
2938

3039
clean: ## Clean all junk files, including all pkgdown docs

0 commit comments

Comments
 (0)