Skip to content

Commit 1686d32

Browse files
committed
removed appveyor, added macOS test
1 parent e1ca9a2 commit 1686d32

File tree

2 files changed

+12
-61
lines changed

2 files changed

+12
-61
lines changed

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

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,35 @@ name: R-CMD-check
99
jobs:
1010
R-CMD-check:
1111
runs-on: ${{ matrix.config.os }}
12-
12+
1313
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
14-
14+
1515
strategy:
1616
fail-fast: false
1717
matrix:
1818
config:
1919
- {os: ubuntu-latest, r: 'release'}
2020
- {os: windows-latest, r: 'release'}
21+
- {os: macOS-latest, r: 'release'}
2122

2223
env:
2324
GITHUB_PAT: ${{ secrets.BLOCKCV_TOKEN }}
2425
R_KEEP_PKG_SOURCE: yes
25-
26+
2627
steps:
2728
- uses: actions/checkout@v4
28-
29+
2930
- name: Setting up pandoc for Rmd docs
3031
uses: r-lib/actions/setup-pandoc@v2
31-
32+
3233
- uses: r-lib/actions/setup-tinytex@v2
3334
if: runner.os != 'Windows'
34-
35+
3536
- uses: r-lib/actions/setup-r@v2
3637
with:
3738
r-version: ${{ matrix.config.r }}
3839
use-public-rspm: true
39-
40+
4041
- uses: r-lib/actions/setup-r-dependencies@v2
4142
with:
4243
extra-packages: any::rcmdcheck, any::covr
@@ -50,8 +51,10 @@ jobs:
5051
run: |
5152
covr::codecov(
5253
quiet = FALSE,
53-
function_exclusions = c("rangeExplorer", "foldExplorer", "cv_block_size")
54+
function_exclusions = c(
55+
"rangeExplorer", "foldExplorer", "cv_block_size", ".check_pkgs"
56+
)
5457
)
5558
shell: Rscript {0}
5659
env:
57-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
60+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

appveyor.yml

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

0 commit comments

Comments
 (0)