Skip to content

Commit

Permalink
Create R-CMD-check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aliaksah authored Apr 20, 2024
1 parent fe8dce8 commit 5e78dd0
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/R-CMD-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# See https://github.com/r-lib/actions/tree/master/examples#readme for
# additional example workflows available for the R community.

# ======================================================== #
# Determines when the action is triggered #
# ======================================================== #

on: [push, pull_request]
name: R-CMD-check

# ======================================================== #
# Determine actions to take #
# ======================================================== #

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (R ${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- {os: windows-latest, r: 'release'}
- {os: macOS-latest, r: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- name: Checking out the repository
uses: actions/checkout@v3

- name: Setting up pandoc
uses: r-lib/actions/setup-pandoc@v2

- name: Setting up R ${{ matrix.config.r }} on ${{ matrix.config.os }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- name: Querying dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- name: Checking package
uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true

0 comments on commit 5e78dd0

Please sign in to comment.