Skip to content

Commit 5eb6447

Browse files
committed
Enable container-based r-ci 'dev' version
1 parent 4816a25 commit 5eb6447

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,27 @@ on:
66
push:
77
pull_request:
88

9-
env:
10-
_R_CHECK_FORCE_SUGGESTS_: "false"
11-
129
jobs:
1310
ci:
1411
strategy:
1512
matrix:
1613
include:
17-
- {os: macOS-latest}
18-
- {os: ubuntu-latest}
14+
- { name: container, os: ubuntu-latest, container: rocker/r2u4ci }
15+
- { name: macos, os: macos-latest }
16+
#- { name: ubuntu, os: ubuntu-latest }
17+
1918

2019
runs-on: ${{ matrix.os }}
20+
container: ${{ matrix.container }}
2121

2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v4
2525

2626
- name: Setup
2727
uses: eddelbuettel/github-actions/r-ci@master
28+
with:
29+
dev_version: 'TRUE'
2830

2931
- name: Configure
3032
run: ./configure; cat src/Makevars

0 commit comments

Comments
 (0)