mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-09 15:08:04 -05:00
26 lines
791 B
YAML
26 lines
791 B
YAML
# 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-**]
|
|
pull_request:
|
|
branches: [main]
|
|
schedule:
|
|
- cron: "0 5 * * 1" # every monday
|
|
|
|
name: Package checks
|
|
|
|
jobs:
|
|
website:
|
|
uses: rstudio/shiny-workflows/.github/workflows/website.yaml@v1
|
|
routine:
|
|
uses: rstudio/shiny-workflows/.github/workflows/routine.yaml@v1
|
|
R-CMD-check:
|
|
uses: rstudio/shiny-workflows/.github/workflows/R-CMD-check.yaml@v1
|
|
with:
|
|
# On R 4.2, Cairo has difficulty installing
|
|
# Remove this line when https://github.com/s-u/Cairo/issues/52 is merged
|
|
extra-packages: Cairo=?ignore
|