Skip to content

Commit

Permalink
revert partial match warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Jun 30, 2024
1 parent 95a324f commit 66f6247
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/check-all-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@ jobs:
run: |
options(
crayon.enabled = TRUE,
warn = 2L,
warnPartialMatchArgs = TRUE,
warnPartialMatchAttr = TRUE,
warnPartialMatchDollar = TRUE
warn = 2L
)
devtools::run_examples(run_dontrun = TRUE, run_donttest = TRUE, document = FALSE)
shell: Rscript {0}
5 changes: 1 addition & 4 deletions .github/workflows/check-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,7 @@ jobs:
run: |
options(
crayon.enabled = TRUE,
warn = 2L,
warnPartialMatchArgs = TRUE,
warnPartialMatchAttr = TRUE,
warnPartialMatchDollar = TRUE
warn = 2L
)
rmarkdown::render("README.Rmd")
shell: Rscript {0}
5 changes: 1 addition & 4 deletions .github/workflows/check-vignette-warnings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,7 @@ jobs:
run: |
options(
crayon.enabled = TRUE,
warn = 2L,
warnPartialMatchArgs = TRUE,
warnPartialMatchAttr = TRUE,
warnPartialMatchDollar = TRUE
warn = 2L
)
vignettes <- fs::dir_ls("vignettes/", glob = "*.Rmd", recurse = TRUE)
purrr::walk(vignettes, ~rmarkdown::render(.x))
Expand Down

0 comments on commit 66f6247

Please sign in to comment.