-
Notifications
You must be signed in to change notification settings - Fork 6
41 lines (33 loc) · 910 Bytes
/
ci.yaml
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
40
41
# Run CI for R using https://eddelbuettel.github.io/r-ci/
name: ci
on:
push:
pull_request:
env:
USE_BSPM: "true"
_R_CHECK_FORCE_SUGGESTS_: "false"
jobs:
ci:
strategy:
matrix:
include:
- {os: macOS-latest, r: 'release'}
- {os: ubuntu-latest}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: windows-latest}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-pandoc@v1
- uses: codecov/codecov-action@v2
- if: runner.os == 'macOS'
run: brew install --cask xquartz
- name: Bootstrap
run: |
curl -OLs https://eddelbuettel.github.io/r-ci/run.sh
chmod 0755 run.sh
./run.sh bootstrap
- name: Dependencies
run: ./run.sh install_all
- name: Test
run: ./run.sh run_tests