Skip to content

Commit

Permalink
new gh action build + test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
markheckmann committed Dec 28, 2023
1 parent 57c5615 commit d61b4fb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 52 deletions.
25 changes: 21 additions & 4 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,33 @@ name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ubuntu-latest
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: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
RGL_USE_NULL: true
DISPLAY: ':99'

steps:
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

- 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

- uses: r-lib/actions/setup-r-dependencies@v2
Expand All @@ -29,4 +45,5 @@ jobs:
needs: check

- uses: r-lib/actions/check-r-package@v2

with:
upload-snapshots: true
48 changes: 0 additions & 48 deletions .github/workflows/pkgdown.yaml

This file was deleted.

0 comments on commit d61b4fb

Please sign in to comment.