Skip to content

Commit

Permalink
Binaries only on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
salvafern committed Mar 17, 2021
1 parent edcbce2 commit 7a7de7d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,16 @@ jobs:
libgeos-dev \
libproj-dev
- name: Install dependencies
- name: Install dependencies macOS and Linux
if: runner.os != 'Windows'
run: |
remotes::install_deps(dependencies = TRUE)
remotes::install_cran("rcmdcheck")
remotes::install_cran("codecov")
shell: Rscript {0}

- name: Install dependencies Windows
if: runner.os == 'Windows'
run: |
remotes::install_deps(dependencies = TRUE, type = "binary")
remotes::install_cran("rcmdcheck")
Expand Down

0 comments on commit 7a7de7d

Please sign in to comment.