Skip to content

Commit

Permalink
Use default repo instead of hardcoding it (#19)
Browse files Browse the repository at this point in the history
Part of insightsengineering/coredev-tasks#546

Hardcoded mirror is failing on all CI runs

note: I attempted to split the debugging information in additional
"blocks", however, this is a composite workflow that will merge them
together :-(

---------

Signed-off-by: André Veríssimo <[email protected]>
  • Loading branch information
averissimo authored Jun 4, 2024
1 parent facade8 commit 745a7b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ catnl_param <- function(x = "") {

catnl("Install required packages")

install.packages(c("remotes", "cli"), quiet = TRUE, verbose = FALSE, repos = "http://cran.us.r-project.org")
install.packages(c("remotes", "cli"), quiet = TRUE, verbose = FALSE)
remotes::install_github("insightsengineering/verdepcheck", quiet = TRUE, verbose = FALSE)
remotes::install_github("r-lib/rcmdcheck#196", quiet = TRUE, verbose = FALSE) # TODO: remove when merged / linked issue fixed

Check warning on line 15 in script.R

View workflow job for this annotation

GitHub Actions / Lint Code Base

file=/github/workspace/script.R,line=15,col=121,[line_length_linter] Lines should not be more than 120 characters.

Expand Down

0 comments on commit 745a7b0

Please sign in to comment.