From 5e78dd017232df1408bb97629a1b532d20a7e5fa Mon Sep 17 00:00:00 2001 From: Aliaksandr Hubin Date: Sat, 20 Apr 2024 14:11:45 +0200 Subject: [PATCH] Create R-CMD-check.yml --- .github/workflows/R-CMD-check.yml | 59 +++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/workflows/R-CMD-check.yml diff --git a/.github/workflows/R-CMD-check.yml b/.github/workflows/R-CMD-check.yml new file mode 100644 index 0000000..22b8e64 --- /dev/null +++ b/.github/workflows/R-CMD-check.yml @@ -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