Skip to content

Commit

Permalink
add roxygen2 dependency to styler workflow (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpprdan authored Jan 15, 2023
1 parent 51716de commit 83df762
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ jobs:
- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::styler
extra-packages: any::styler, any::roxygen2
needs: styler
- name: Enable styler cache
Expand All @@ -658,7 +658,7 @@ jobs:
id: styler-location
run: |
cat(
"location=",
"location=",
styler::cache_info(format = "tabular")$location,
"\n",
file = Sys.getenv("GITHUB_OUTPUT"),
Expand Down
4 changes: 2 additions & 2 deletions examples/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::styler
extra-packages: any::styler, any::roxygen2
needs: styler

- name: Enable styler cache
Expand All @@ -38,7 +38,7 @@ jobs:
id: styler-location
run: |
cat(
"location=",
"location=",
styler::cache_info(format = "tabular")$location,
"\n",
file = Sys.getenv("GITHUB_OUTPUT"),
Expand Down

0 comments on commit 83df762

Please sign in to comment.