Skip to content

Commit

Permalink
GA: modernize - take 3
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson committed May 14, 2024
1 parent 20209e6 commit 431acf6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,14 @@ jobs:

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
extra-packages: |
any::rcmdcheck
any::remotes
needs: check

- name: Check against mirai development version?
if: matrix.config.mirai == 'devel'
run: |
install.packages("remotes")
remotes::install_github("shikokuchuo/nanonext")
remotes::install_github("shikokuchuo/mirai")
shell: Rscript {0}
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/covr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,15 @@ jobs:

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
extra-packages: |
any::rcmdcheck
any::remotes
any::sessioninfo
any::covr
needs: check

- name: Install dependencies
run: |
install.packages(c("covr", "sessioninfo"))
remotes::install_deps(dependencies = TRUE)
install.packages(".", repos=NULL, type="source")
shell: Rscript {0}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/future_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
extra-packages: |
any::rcmdcheck
any::remotes
needs: check

- name: Install R package dependencies
Expand Down

0 comments on commit 431acf6

Please sign in to comment.