Skip to content

Commit

Permalink
Create rcmdcheck.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vankesteren committed Feb 21, 2024
1 parent 83da7a9 commit 89aa5fb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/rcmdcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: R-CMD-check

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up R
uses: r-lib/actions/setup-r@v2
with:
r-version: "release"
use-public-rspm: true
- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
- name: Check
uses: r-lib/actions/check-r-package@v2

0 comments on commit 89aa5fb

Please sign in to comment.