Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/docker/install-packages.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pkgs <- c(
"rlang",
"rmarkdown",
"roxygen2",
"wranglezone/stbl",
"stbl",
"stringr",
"testthat",
"usethis",
Expand All @@ -30,7 +30,11 @@ pkgs <- c(
tryCatch(
pak::pak(pkgs),
error = function(e) {
warning("Bulk install failed, retrying one-by-one: ", conditionMessage(e), call. = FALSE)
warning(
"Bulk install failed, retrying one-by-one: ",
conditionMessage(e),
call. = FALSE
)
for (pkg in pkgs) {
tryCatch(
pak::pak(pkg),
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
any::rcmdcheck
any::rlang
any::roxygen2
any::stbl
any::testthat
any::usethis
any::withr
wranglezone/stbl
Gilead-BioStats/qcthat
local::.

Expand Down
4 changes: 1 addition & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Imports:
gh,
purrr,
rlang,
stbl,
stbl (>= 0.3.0),
stringr,
usethis
Suggests:
Expand All @@ -29,8 +29,6 @@ Suggests:
rmarkdown,
testthat (>= 3.0.0),
withr
Remotes:
stbl=wranglezone/stbl
Config/testthat/edition: 3
Encoding: UTF-8
Language: en-US
Expand Down
1 change: 1 addition & 0 deletions R/use_skill_tdd_workflow.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ use_skill_tdd_workflow <- function(
"no_package_field"
)
}
usethis::use_package("stbl", min_version = "0.3.0")
invisible(.use_skill(
"tdd-workflow",
data = list(package = pkg_name),
Expand Down
2 changes: 1 addition & 1 deletion inst/templates/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
any::rcmdcheck
any::rlang
any::roxygen2
any::stbl
any::testthat
any::usethis
any::withr
wranglezone/stbl
local::.

- name: Install air
Expand Down
Loading