Skip to content

Commit 1d97d8b

Browse files
authored
Update R-package-macos.yml
1 parent ecfc76e commit 1d97d8b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/R-package-macos.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
push:
1313
branches: [ "main" ]
1414
pull_request:
15-
branches: [ "dont check" ]
15+
branches: [ "main" ]
1616

1717
permissions:
1818
contents: read
@@ -51,16 +51,17 @@ jobs:
5151
echo "options(device = 'pdf')" >> ~/.Rprofile
5252
5353
- name: Set up R ${{ matrix.r-version }}
54-
uses: r-lib/actions/setup-r@f57f1301a053485946083d7a45022b278929a78a
54+
uses: r-lib/actions/setup-r@v2
5555
with:
5656
r-version: ${{ matrix.r-version }}
5757

5858
- name: Install dependencies
5959
run: |
60-
install.packages(c("remotes", "never"))
60+
install.packages("remotes")
6161
remotes::install_deps(dependencies = TRUE)
6262
shell: Rscript {0}
6363

6464
- name: Check
65-
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning")
65+
run: |
66+
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning")
6667
shell: Rscript {0}

0 commit comments

Comments
 (0)