Skip to content

Merge pull request #406 from ldecicco-USGS/main #53

Merge pull request #406 from ldecicco-USGS/main

Merge pull request #406 from ldecicco-USGS/main #53

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]
pull_request:
branches: [main]
name: R-CMD-checka
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: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@c0a81a463886bb75afe234e07a9fd5bb79219196
- uses: r-lib/actions/setup-pandoc@52330cc136b963487918a8867f948ddf954e9e63
- uses: r-lib/actions/setup-r@756399d909bf9c180bbdafe8025f794f51f2da02
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@52330cc136b963487918a8867f948ddf954e9e63
with:
extra-packages: any::rcmdcheck
needs: check
- uses: r-lib/actions/check-r-package@52330cc136b963487918a8867f948ddf954e9e63
with:
upload-snapshots: true