Skip to content

Commit

Permalink
stye
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo committed Dec 24, 2023
1 parent 01539b2 commit 9f41386
Show file tree
Hide file tree
Showing 8 changed files with 476 additions and 737 deletions.
45 changes: 42 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ jobs:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: fedora-clang, r: 'devel'}
- {os: debian-gcc, r: 'devel'}
- {os: debian-clang, r: 'devel'}
- {os: ubuntu-latest, r: 'oldrel-1'}
- {os: ubuntu-latest, r: 'oldrel-2'}
- {os: ubuntu-latest, r: 'oldrel-3'}
Expand Down Expand Up @@ -62,3 +59,45 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true

check-r-devel-san:
runs-on: ubuntu-18.04
container: rocker/r-devel-san
steps:
- name: Checkout repository 🛎
uses: actions/checkout@v2

- name: Install dependencies
shell: Rscript {0}
run: |
install.packages(c("Rcpp", "knitr", "rmarkdown", "tinytest", "rcmdcheck"))
- name: Check 🔍
shell: Rscript {0}
run: |
rcmdcheck::rcmdcheck(
args = c("--as-cran", "--ignore-vignettes"),
build_args = "--no-build-vignettes",
error_on = "warning"
)
check-r-devel-ubsan-clang:
runs-on: ubuntu-18.04
container: rocker/r-devel-ubsan-clang
steps:
- name: Checkout repository 🛎
uses: actions/checkout@v2

- name: Install dependencies
shell: Rscript {0}
run: |
install.packages(c("Rcpp", "knitr", "rmarkdown", "tinytest", "rcmdcheck"))
- name: Check 🔍
shell: Rscript {0}
run: |
rcmdcheck::rcmdcheck(
args = c("--as-cran", "--ignore-vignettes"),
build_args = "--no-build-vignettes",
error_on = "warning"
)
338 changes: 0 additions & 338 deletions .github/workflows/r-package.yml

This file was deleted.

Loading

0 comments on commit 9f41386

Please sign in to comment.