Skip to content

version

version #104

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on: [push, pull_request]
name: check-fixed
jobs:
check-fixed:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, r: 'release'}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
NOT_CRAN: true
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
extra-repositories: 'https://mc-stan.org/r-packages/'
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- name: Repos
run: |
cat("\noptions(repos=c(stan='https://mc-stan.org/r-packages/',CRAN ='https://cloud.r-project.org'))\n", file = "~/.Rprofile", append = TRUE)
shell: Rscript {0}
- name: Install CmdStan
shell: Rscript {0}
run: |
install.packages("cmdstanr")
cmdstanr::install_cmdstan()
cmdstan <- file.path(Sys.getenv("RUNNER_TEMP"), "cmdstan")
file.rename(cmdstanr::cmdstan_path(), cmdstan)
lines <- paste0("\nCMDSTAN=", cmdstan, "\n")
cat(lines, file = "~/.Renviron", append = TRUE)
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck, local::.
needs: check
cache-version: 2
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true