aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 1bf9577e2d6e129ff57607aab7cdc23706dcbe57 (plain) (blame)
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
# Run CI for R using https://eddelbuettel.github.io/r-ci/

language: c
sudo: required
dist: focal

jobs:
  include:
    - name: linux
      os: linux

env:
  NOT_CRAN: "true"
  _R_CHECK_FORCE_SUGGESTS_: "false"

before_install:
  - curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh
  - ./run.sh bootstrap

install:
  - ./run.sh install_all
  - ./run.sh install_r drat
  - Rscript -e 'bspm::disable(); drat::addRepo("jranke"); install.packages("mkin")'

script:
  - ./run.sh run_tests

after_failure:
  - ./run.sh dump_logs

after_success:
  - travis_wait ./run.sh coverage

notifications:
  email:
    on_success: change
    on_failure: change

Contact - Imprint