Skip to content

Commit 209aa6a

Browse files
committed
usethis::use_github_action("check-standard")
* still only running on a single platform (ubuntu-latest) though
1 parent 02c6290 commit 209aa6a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,23 @@ on:
44
push:
55
branches: [main, master]
66
pull_request:
7-
branches: [main, master]
87

9-
name: R-CMD-check
8+
name: R-CMD-check.yaml
9+
10+
permissions: read-all
1011

1112
jobs:
1213
R-CMD-check:
1314
runs-on: ubuntu-latest
1415
env:
1516
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1617
R_KEEP_PKG_SOURCE: yes
18+
1719
steps:
1820
- uses: actions/checkout@v4
1921

22+
- uses: r-lib/actions/setup-pandoc@v2
23+
2024
- uses: r-lib/actions/setup-r@v2
2125
with:
2226
use-public-rspm: true
@@ -27,3 +31,6 @@ jobs:
2731
needs: check
2832

2933
- uses: r-lib/actions/check-r-package@v2
34+
with:
35+
upload-snapshots: true
36+
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'

0 commit comments

Comments
 (0)