Skip to content

Fix publish workflow schedule to match intended cadence #20

Fix publish workflow schedule to match intended cadence

Fix publish workflow schedule to match intended cadence #20

Workflow file for this run

name: R CMD check
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (R ${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, r: "release"}
- {os: windows-latest, r: "release"}
steps:
- uses: actions/checkout@v5
- 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:
extra-packages: any::rcmdcheck
needs: check
- uses: r-lib/actions/check-r-package@v2