-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (35 loc) · 1.02 KB
/
r.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# See https://github.com/r-lib/actions/tree/master/examples#readme for
# additional example workflows available for the R community.
name: R
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
R-CMD-check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
r-version: ["oldrel", "release", "devel"]
steps:
- name: Checkout coRanking
uses: actions/checkout@v2
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r-version }}
- name: Install R dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: 1
extra-packages: |
any::rcmdcheck
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/check-r-package@v2