-
Notifications
You must be signed in to change notification settings - Fork 20
36 lines (34 loc) · 994 Bytes
/
R-CMD-check.yaml
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
on: [push, pull_request]
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: macOS-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Install macOS system dependencies
if: runner.os == 'macOS'
run: |
brew install imagemagick@6
brew install libgit2
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
r-version: 4.2.3
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
bioc::GENESIS
bioc::GenomicFeatures
bioc::TxDb.Hsapiens.UCSC.hg38.knownGene
github::xihaoli/STAAR
github::xihaoli/MultiSTAAR
github::zilinli1988/SCANG
any::rcmdcheck
needs: |
website
coverage
install-pandoc: true
- name: Check
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
shell: Rscript {0}