-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (43 loc) · 1.09 KB
/
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
37
38
39
40
41
42
43
44
45
# Workflow derived from https://github.com/rstudio/shiny-workflows
#
# NOTE: This Shiny team GHA workflow is overkill for most R packages.
# For most R packages it is better to use https://github.com/r-lib/actions
on:
push:
branches: [main, rc-**]
paths:
- ".github/workflows/R-CMD-check.yaml"
- "DESCRIPTION"
- "NAMESPACE"
- "LICENSE"
- "LICENSE.md"
- ".Rbuildignore"
- "_pkgdown.yml"
- "man/**"
- "R/**"
- "tests/**"
pull_request:
branches: [main]
paths:
- ".github/workflows/R-CMD-check.yaml"
- "DESCRIPTION"
- "NAMESPACE"
- "LICENSE"
- "LICENSE.md"
- ".Rbuildignore"
- "_pkgdown.yml"
- "man/**"
- "R/**"
- "tests/**"
schedule:
- cron: "0 11 * * 1" # every monday
name: Package checks
jobs:
website:
uses: rstudio/shiny-workflows/.github/workflows/website.yaml@v1
with:
clean: "FALSE"
routine:
uses: rstudio/shiny-workflows/.github/workflows/routine.yaml@v1
R-CMD-check:
uses: rstudio/shiny-workflows/.github/workflows/R-CMD-check.yaml@v1