Skip to content

Add Chapter 2 Documentation: Extending Hierarchical Model to Correlated Biomarkers #904

Add Chapter 2 Documentation: Extending Hierarchical Model to Correlated Biomarkers

Add Chapter 2 Documentation: Extending Hierarchical Model to Correlated Biomarkers #904

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:
branches: [main, master]
pull_request:
branches: [main, master]
name: check-readme
jobs:
check-readme:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- { os: ubuntu-latest, r: "release" }
#- { os: ubuntu-latest, r: "devel" }
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: "latest"
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: "release"
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: local::.
- name: Render README
run: |
options(
crayon.enabled = TRUE,
# warnPartialMatchArgs = TRUE,
# warnPartialMatchAttr = TRUE,
# warnPartialMatchDollar = TRUE,
warn = 2L
)
rmarkdown::render("README.Rmd")
shell: Rscript {0}