Skip to content

Bump JamesIves/github-pages-deploy-action from 4.6.3 to 4.6.4 #437

Bump JamesIves/github-pages-deploy-action from 4.6.3 to 4.6.4

Bump JamesIves/github-pages-deploy-action from 4.6.3 to 4.6.4 #437

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: R-CMD-check
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
#- {os: macOS-latest, r: 'devel'}
- { os: macOS-latest, r: "release" }
- { os: macOS-latest, r: "oldrel" }
#- {os: macOS-latest, r: 'oldrel-2'}
#- {os: macOS-latest, r: 'oldrel-3'}
#- { os: windows-latest, r: "next" }
- { os: windows-latest, r: "devel" }
- { os: windows-latest, r: "release" }
- { os: windows-latest, r: "oldrel" }
#- {os: windows-latest, r: 'oldrel-2'}
#- {os: windows-latest, r: 'oldrel-3'}
# use 4.1 to check with rtools40's older compiler
#- { os: windows-latest, r: "4.1" }
#- { os: ubuntu-latest, r: "next" }
- { os: ubuntu-latest, r: "devel" }
- { os: ubuntu-latest, r: "release" }
#- { os: ubuntu-latest, r: "oldrel" }
#- { os: ubuntu-latest, r: "oldrel-2" }
#- { os: ubuntu-latest, r: "oldrel-3" }
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
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: |
any::rcmdcheck
Matrix=?ignore-before-r=100.0.0
lme4=?ignore-before-r=100.0.0
TMB=?ignore-before-r=100.0.0
needs: check
- name: Install packages from source
run: |
utils::install.packages(c("Matrix", "lme4", "TMB"), type = "source")
shell: Rscript {0}
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
upload-results: true
error-on: 'ifelse(getRversion() > "4.3", "note", "warning")'
env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false
_R_CHECK_CRAN_INCOMING_: false
_R_CHECK_FORCE_SUGGESTS_: false
_R_CHECK_STOP_ON_INVALID_NUMERIC_VERSION_INPUTS_: true