Skip to content

Commit

Permalink
Merge 922573c into 1fc5b13
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzwalthert authored Aug 22, 2023
2 parents 1fc5b13 + 922573c commit 17167fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/check-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
error-on: 'ifelse(getRversion() > 3.6, "warning", "note")'
error-on: 'ifelse(getRversion() > "3.6", "warning", "note")'
env:
_R_CHECK_FORCE_SUGGESTS_: false
_R_CHECK_STOP_ON_INVALID_NUMERIC_VERSION_INPUTS_: true
2 changes: 1 addition & 1 deletion R/set-assert-args.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set_arg_write_tree <- function(write_tree) {
#' @inheritParams make_transformer
#' @keywords internal
assert_transformers <- function(transformers) {
version_cutoff <- 2.0
version_cutoff <- "2.0"
no_name <- is.null(transformers$style_guide_name)
no_version <- is.null(transformers$style_guide_version)
if (no_name || no_version) {
Expand Down

0 comments on commit 17167fd

Please sign in to comment.