Use r-lib actions for install and check #53
Workflow file for this run
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
# R package release checking | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: R-CMD-check-release | |
jobs: | |
R-CMD-check: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CRAN_REPO: https://packagemanager.rstudio.com/all/__linux__/focal/latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup R (Ubuntu) | |
if: matrix.os == 'ubuntu-latest' | |
uses: eddelbuettel/github-actions/r2u-setup@master | |
- name: Setup R (Other) | |
if: matrix.os != 'ubuntu-latest' | |
uses: r-lib/actions/setup-r@v2 | |
- name: Install package dependencies | |
run: | | |
install.packages(c("remotes", "rcmdcheck", "reticulate")) | |
remotes::install_deps(dependencies = TRUE, repos = c("CRAN" = Sys.getenv("CRAN_REPO"))) | |
shell: Rscript {0} | |
- name: Install DeepForest | |
run: | | |
reticulate::install_miniconda() | |
reticulate::py_install('DeepForest', pip=TRUE) | |
shell: Rscript {0} | |
- name: Build and check deepforester | |
uses: r-lib/actions/check-r-package@v2 |