-
-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (31 loc) · 1012 Bytes
/
ci.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
40
41
# 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 CI
on: [push, pull_request]
env:
REPO: rocker/verse
jobs:
build:
runs-on: Ubuntu-latest
strategy:
matrix:
include:
- name: latest
cmd : make
cntr: ${REPO}:latest
- name: dev
cmd : make
cntr: ${REPO}:devel
steps:
- uses: actions/checkout@v2
- name: Container
run: docker pull ${{ matrix.cntr }}
- name: SessionInfo
run: docker run --rm -i -v ${PWD}:/mnt -w /mnt ${{ matrix.cntr }} Rscript --vanilla -e 'sessionInfo()'
- name: Build & check
run: docker run --rm -i -v ${PWD}:/mnt -w /mnt ${{ matrix.cntr }} ${{ matrix.cmd }} checkd