generated from neurogenomics/templateR
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (51 loc) · 1.28 KB
/
rworkflows.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
47
48
49
50
51
name: rworkflows
'on':
push:
branches:
- master
- main
- devel
- RELEASE_**
- '*'
- '!gh-pages'
pull_request:
branches:
- master
- main
- devel
- RELEASE_**
- '*'
- '!gh-pages'
jobs:
rworkflows:
permissions: write-all
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
container: ${{ matrix.config.cont }}
strategy:
fail-fast: ${{ false }}
matrix:
config:
- os: ubuntu-latest
bioc: devel
r: auto
cont: docker.io/hdasht/bioc-meme:meme5.5.5 # Custom image
rspm: https://packagemanager.rstudio.com/cran/__linux__/focal/release
steps:
- uses: HDash/rworkflows@master
with:
run_bioccheck: ${{ true }}
run_rcmdcheck: ${{ true }}
as_cran: ${{ true }}
run_vignettes: ${{ true }}
has_testthat: ${{ true }}
run_covr: ${{ true }}
run_pkgdown: ${{ true }}
has_runit: ${{ false }}
has_latex: ${{ false }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
docker_user: hdasht
docker_org: neurogenomicslab
run_docker: ${{ true }}