Skip to content

Bump JamesIves/github-pages-deploy-action from 4.6.9 to 4.7.1 #457

Bump JamesIves/github-pages-deploy-action from 4.6.9 to 4.7.1

Bump JamesIves/github-pages-deploy-action from 4.6.9 to 4.7.1 #457

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 }}
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
upgrade: 'TRUE'
extra-packages: |
deps::.
any::ggstatsplot
any::ggthemes
- name: Render README
run: |
options(crayon.enabled = TRUE, warn = 2L)
rmarkdown::render("README.Rmd")
shell: Rscript {0}