Skip to content

Commit

Permalink
remove depracated functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Joaobazzo committed Sep 4, 2023
1 parent 41999ff commit d4fba41
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check-CRAN.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Install dependencies
run: |
pak::local_install_dev_deps(upgrade = TRUE)
pak::pkg_sysreqs(upgrade = TRUE)
pak::pkg_install("rcmdcheck")
shell: Rscript {0}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
- name: Install system dependencies (Linux)
if: runner.os == 'Linux'
run: |
pak::local_system_requirements(execute = TRUE)
pak::pkg_system_requirements("rcmdcheck", execute = TRUE)
pak::pkg_sysreqs(execute = TRUE)
pak::pkg_sysreqs("rcmdcheck", execute = TRUE)
shell: Rscript {0}

- name: Install system dependencies (MacOS)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- name: Install system dependencies
if: runner.os == 'Linux'
run: |
pak::local_system_requirements(execute = TRUE)
pak::pkg_system_requirements("pkgdown", execute = TRUE)
pak::pkg_sysreqs(execute = TRUE)
pak::pkg_sysreqs("pkgdown", execute = TRUE)
shell: Rscript {0}

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- name: Install system dependencies
if: runner.os == 'Linux'
run: |
pak::local_system_requirements(execute = TRUE)
pak::pkg_system_requirements("covr", execute = TRUE)
pak::pkg_sysreqs(execute = TRUE)
pak::pkg_sysreqs("covr", execute = TRUE)
shell: Rscript {0}

- name: Install system dependencies (MacOS)
Expand Down

0 comments on commit d4fba41

Please sign in to comment.