Skip to content

Commit

Permalink
Install dev dbplyr to check #225
Browse files Browse the repository at this point in the history
  • Loading branch information
ateucher committed Sep 29, 2020
1 parent 3999b5b commit 34afabb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/cmd-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ jobs:
install.packages("rcmdcheck")
shell: Rscript {0}

- name: install dev version of dbplyr to test for upcoming 2.0 release
if: matrix.config.os == 'ubuntu-latest' && matrix.config.r == 'release'
run: |
# (https://twitter.com/hadleywickham/status/1310667392448684038)
remotes::install_github("tidyverse/dbplyr")
shell: Rscript {0}

- name: Check
run: rcmdcheck::rcmdcheck(args = ${{ matrix.config.args }}, error_on = 'warning', check_dir = 'check')
shell: Rscript {0}
Expand All @@ -97,7 +104,7 @@ jobs:
path: check

- name: Test coverage
if: matrix.config.os == 'macOS-latest' && matrix.config.r == '3.6'
if: matrix.config.os == 'macOS-latest' && matrix.config.r == 'release'
run: |
remotes::install_github("r-lib/covr@gh-actions")
covr::codecov(token = "${{secrets.CODECOV_TOKEN}}")
Expand Down

0 comments on commit 34afabb

Please sign in to comment.