-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (43 loc) · 1.33 KB
/
test-package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
CRAN_REPO: https://packagemanager.rstudio.com/all/__linux__/focal/latest
steps:
- uses: actions/checkout@v2
- 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)
install.packages('deepforestr')
shell: Rscript {0}
- name: Check
run: |
options(crayon.enabled = TRUE)
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
shell: Rscript {0}