We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6bd41b commit 7a434e3Copy full SHA for 7a434e3
3 files changed
.github/workflows/R-CMD-check.yaml
@@ -29,6 +29,7 @@ jobs:
29
env:
30
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
31
R_KEEP_PKG_SOURCE: yes
32
+ R_VERSION_TYPE: ${{ matrix.config.r }}
33
34
steps:
35
- uses: actions/checkout@v6
DESCRIPTION
@@ -37,7 +37,7 @@ Imports:
37
lifecycle,
38
posterior,
39
reshape2,
40
- rlang (>= 0.3.0),
+ rlang (>= 1.0.0),
41
stats,
42
tibble (>= 2.0.0),
43
tidyr,
tests/testthat/helper.R
@@ -7,7 +7,7 @@ on_r_devel <- function() {
7
isTRUE(Sys.getenv("R_VERSION_TYPE") == "devel")
8
}
9
on_r_oldrel <- function() {
10
- isTRUE(Sys.getenv("R_VERSION_TYPE") == "oldrel")
+ startsWith(Sys.getenv("R_VERSION_TYPE"), "oldrel")
11
12
13
skip_on_r_devel <- function() {
0 commit comments