Skip to content

Commit

Permalink
GHA v2 (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Nov 18, 2021
1 parent 05bf269 commit 33458ea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 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-**]
Expand All @@ -10,11 +14,11 @@ name: Package checks

jobs:
website:
uses: rstudio/shinycoreci/.github/workflows/call-website.yaml@v1
uses: rstudio/shiny-workflows/.github/workflows/website-netlify.yaml@v1
secrets:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
routine:
uses: rstudio/shinycoreci/.github/workflows/call-routine.yaml@v1
uses: rstudio/shiny-workflows/.github/workflows/routine.yaml@v1
R-CMD-check:
uses: rstudio/shinycoreci/.github/workflows/call-R-CMD-check.yaml@v1
uses: rstudio/shiny-workflows/.github/workflows/R-CMD-check.yaml@v1
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ knitr::opts_chunk$set(echo = TRUE)

<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/flexdashboard)](https://CRAN.R-project.org/package=flexdashboard)
[![R-CMD-check](https://github.com/rstudio/flexdashboard/workflows/R-CMD-check/badge.svg)](https://github.com/rstudio/flexdashboard/actions)
[![R-CMD-check](https://github.com/rstudio/flexdashboard/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rstudio/flexdashboard/actions)
<!-- badges: end -->

The goal of **flexdashboard** is to make it easy to create interactive dashboards for R, using R Markdown.
Expand Down Expand Up @@ -48,7 +48,7 @@ install.packages("flexdashboard")

If you want to use the development version of the **flexdashboard** package, you can install the package from GitHub via the [**remotes** package](https://remotes.r-lib.org):

```r
```{r eval=FALSE}
remotes::install_github('rstudio/flexdashboard')
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[![CRAN
status](https://www.r-pkg.org/badges/version/flexdashboard)](https://CRAN.R-project.org/package=flexdashboard)
[![R-CMD-check](https://github.com/rstudio/flexdashboard/workflows/R-CMD-check/badge.svg)](https://github.com/rstudio/flexdashboard/actions)
[![R-CMD-check](https://github.com/rstudio/flexdashboard/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rstudio/flexdashboard/actions)
<!-- badges: end -->

The goal of **flexdashboard** is to make it easy to create interactive
Expand Down

0 comments on commit 33458ea

Please sign in to comment.