add github workflows back in. prep for cran resubmit #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | |
# the purpose of this workflow is to run R CMD CHECK without installing suggested packages | |
# CRAN will check this | |
# duckdb should not be installed since it is not installed on cran servers. | |
on: | |
push: | |
branches: [main, master, test] | |
pull_request: | |
branches: [main, master] | |
name: R-CMD-check-hard-dependencies-only | |
jobs: | |
R-CMD-check-hard-deps: | |
# if: github.repository == 'darwin-eu-dev/CDMConnector' || github.repository == 'darwin-eu/CDMConnector' | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {os: macOS-latest, r: 'release'} | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
CI_TEST_DB: duckdb | |
TESTTHAT_CPUS : 1 | |
steps: | |
- uses: actions/checkout@v2 | |
- 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 | |
with: | |
dependencies: '"hard"' # install only imports, depends, and linking to (hard dependencies) | |
extra-packages: any::rcmdcheck | |
needs: check | |
- name: Install R packages | |
run: | | |
install.packages("knitr") | |
shell: Rscript {0} | |
- name: Check that suggested packages are not installed | |
run: | | |
tryCatch(remove.packages("duckdb"), error = function(e) NULL) | |
stopifnot(is.null(tryCatch(packageVersion("duckdb"), error = function(e) NULL))) | |
shell: Rscript {0} | |
- name: List contents of home directory | |
run: | | |
print("Home directory content before R check") | |
print(list.files(path.expand("~"))) | |
shell: Rscript {0} | |
- name: Add options to .Rprofile | |
run: | | |
echo "options(rmarkdown.html_vignette.check_title = FALSE)" >> ~/.Rprofile | |
shell: bash | |
- uses: r-lib/actions/check-r-package@v2 | |
with: | |
upload-snapshots: true | |
args: 'c("--no-manual", "--as-cran", "--no-build-vignettes", "--ignore-vignettes")' | |
error-on: '"error"' | |
- name: Make sure that duckdb was not installed in a previous step | |
run: | | |
stopifnot(is.null(tryCatch(packageVersion("duckdb"), error = function(e) NULL))) | |
shell: Rscript {0} | |
- name: List contents of home directory after R check | |
run: | | |
print("Home directory content after R check. Should be the same as before R check.") | |
print(list.files(path.expand("~"))) | |
shell: Rscript {0} | |