Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit 4d67e62

Browse files
committed
update github action command check
1 parent bc8c87a commit 4d67e62

File tree

1 file changed

+3
-19
lines changed

1 file changed

+3
-19
lines changed

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

+3-19
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,7 @@ name: R-CMD-check
1010

1111
jobs:
1212
R-CMD-check:
13-
runs-on: ${{ matrix.config.os }}
14-
15-
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
16-
17-
strategy:
18-
fail-fast: false
19-
matrix:
20-
config:
21-
- {os: macOS-latest, r: 'release'}
22-
- {os: windows-latest, r: 'release'}
23-
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
24-
- {os: ubuntu-latest, r: 'release'}
25-
- {os: ubuntu-latest, r: 'oldrel-1'}
26-
13+
runs-on: ubuntu-latest
2714
env:
2815
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
2916
R_KEEP_PKG_SOURCE: yes
@@ -34,13 +21,10 @@ jobs:
3421
- uses: r-lib/actions/setup-pandoc@v1
3522

3623
- uses: r-lib/actions/setup-r@v1
37-
with:
38-
r-version: ${{ matrix.config.r }}
39-
http-user-agent: ${{ matrix.config.http-user-agent }}
40-
use-public-rspm: true
24+
4125

4226
- uses: r-lib/actions/setup-r-dependencies@v1
4327
with:
4428
extra-packages: rcmdcheck
4529

46-
- uses: r-lib/actions/check-r-package@v1
30+
- uses: r-lib/actions/check-r-package@v1

0 commit comments

Comments
 (0)