We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0cdf5e commit f3f3b16Copy full SHA for f3f3b16
.github/workflows/check.yaml
@@ -52,6 +52,12 @@ jobs:
52
shell: Rscript {0}
53
run: |
54
cmdstanr::check_cmdstan_toolchain(fix = TRUE)
55
+
56
+ # Set CmdStan path explicitly (in case it was restored from cache)
57
+ cmdstan_dir <- fs::dir_ls("~/.cmdstan", type = "directory", recurse = FALSE)[1]
58
+ cmdstanr::set_cmdstan_path(cmdstan_dir)
59
60
+ # Install CmdStan only if not already installed
61
if (!cmdstanr::cmdstan_version() > "0.0.0") {
62
cmdstanr::install_cmdstan()
63
}
0 commit comments