Skip to content

Commit

Permalink
upgrade rtools
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Jul 24, 2023
1 parent 396fa90 commit 64e5dd0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
config:
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release', rtools: '42'}
- {os: windows-latest, r: 'release', rtools: '43'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
rtools-version: '42'
rtools-version: '43'
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

Expand Down
7 changes: 6 additions & 1 deletion R/brm_model.R
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,10 @@ brm_model <- function(
message = "prior arg must be a \"brmsprior\" object or NULL."
)
}
brms::brm(data = data, formula = formula, prior = prior, ...)
brms::brm(
data = data,
formula = formula,
prior = prior,
...
)
}

0 comments on commit 64e5dd0

Please sign in to comment.