Browse code

Update R-CMD-check.yaml

noriakis authored on 26/02/2022 14:11:28
Showing 1 changed files

... ...
@@ -10,35 +10,15 @@ name: R-CMD-check
10 10
 
11 11
 jobs:
12 12
   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: 'devel'}
22
-          - {os: windows-latest, r: 'devel'}
23
-          - {os: ubuntu-latest,   r: 'devel'}
24
-
13
+    runs-on: ubuntu-latest
25 14
     env:
26 15
       GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
27 16
       R_KEEP_PKG_SOURCE: yes
28
-
29 17
     steps:
30 18
       - uses: actions/checkout@v2
31 19
 
32
-      - uses: r-lib/actions/setup-pandoc@v2
33
-
34
-      - name: install libxml2
35
-        if: ${{ matrix.config.os }} == 'ubuntu-latest'
36
-        run: sudo apt-get install libxml2-dev
37
-
38 20
       - uses: r-lib/actions/setup-r@v2
39 21
         with:
40
-          r-version: ${{ matrix.config.r }}
41
-          http-user-agent: ${{ matrix.config.http-user-agent }}
42 22
           use-public-rspm: true
43 23
 
44 24
       - uses: r-lib/actions/setup-r-dependencies@v2
... ...
@@ -47,5 +27,3 @@ jobs:
47 27
           needs: check
48 28
 
49 29
       - uses: r-lib/actions/check-r-package@v2
50
-        with:
51
-          upload-snapshots: true