Skip to content

Check with devel statsExpressions #267

Check with devel statsExpressions

Check with devel statsExpressions #267

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
# Always try to use the latest pandoc version
# https://github.com/jgm/pandoc/releases
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: "3.1.8"
- 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:
cache-version: 2
pak-version: devel
extra-packages: |
deps::.
any::ggstatsplot
any::ggthemes
- name: Render README
run: |
options(crayon.enabled = TRUE, warn = 2L)
rmarkdown::render("README.Rmd")
shell: Rscript {0}