Skip to content

ignore shiny app

ignore shiny app #90

Workflow file for this run

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
- name: Setting up pandoc for Rmd docs
uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-tinytex@v2
- name: Install dependencies
run: |
install.packages(c("remotes", "rcmdcheck", "covr"))
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
- name: Check
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
shell: Rscript {0}
- name: Test coverage
run: |

Check failure on line 27 in .github/workflows/R-CMD-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/R-CMD-check.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
covr::codecov(
function_exclusions = c(
"rangeExplorer",
"foldExplorer",
"cv_block_size"
)
)
shell: Rscript {0}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}