Skip to content

Commit

Permalink
Removes unused code, restores CI pkg tests
Browse files Browse the repository at this point in the history
  • Loading branch information
edgararuiz committed Sep 21, 2024
1 parent 5fdd672 commit 3c14ef8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: temp
branches: main
pull_request:
branches: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: temp
branches: main
pull_request:
branches: main

Expand Down
9 changes: 1 addition & 8 deletions R/m-defaults.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,5 @@ print.mall_session <- function(x, ...) {
}
session <- imap(x$session, \(x, y) glue("{col_yellow({paste0(y, ':')})}{x}"))
label_argument <- "{col_green('R session:')}"
if (length(session) == 1) {
cli_inform(paste(label_argument, session[[1]]))
} else {
cli_inform(label_argument)
session <- as.character(session)
session <- set_names(session, " ")
cli_bullets(session)
}
cli_inform(paste(label_argument, session[[1]]))
}

0 comments on commit 3c14ef8

Please sign in to comment.