Skip to content

Commit e2827f7

Browse files
committed
yaml issue fixed
1 parent d2846c2 commit e2827f7

File tree

2 files changed

+10
-21
lines changed

2 files changed

+10
-21
lines changed

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

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,26 @@ jobs:
1515
- name: Setting up pandoc for Rmd docs
1616
uses: r-lib/actions/setup-pandoc@v2
1717
- uses: r-lib/actions/setup-tinytex@v2
18+
1819
- name: Install dependencies
1920
run: |
2021
install.packages(c("remotes", "rcmdcheck", "covr"))
2122
remotes::install_deps(dependencies = TRUE)
2223
shell: Rscript {0}
24+
2325
- name: Check
2426
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
2527
shell: Rscript {0}
28+
2629
- name: Test coverage
27-
run: |
28-
covr::codecov(
29-
function_exclusions = c(
30-
"rangeExplorer",
31-
"foldExplorer",
32-
"cv_block_size"
33-
)
30+
run: |
31+
covr::codecov(
32+
function_exclusions = c(
33+
"rangeExplorer",
34+
"foldExplorer",
35+
"cv_block_size"
3436
)
37+
)
3538
shell: Rscript {0}
3639
env:
3740
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

codecov.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)