Skip to content

Commit 0a36d8d

Browse files
Try to get git action to run R code
1 parent dfa63c9 commit 0a36d8d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
- x86
3333
steps:
3434
- uses: actions/checkout@v4
35+
# Install R
36+
- uses: r-lib/actions/setup-r@v2
37+
with:
38+
r-version: '4.4.2' # or whatever you need
3539
- uses: julia-actions/setup-julia@v2
3640
with:
3741
version: ${{ matrix.version }}
@@ -54,6 +58,9 @@ jobs:
5458
statuses: write
5559
steps:
5660
- uses: actions/checkout@v4
61+
- uses: r-lib/actions/setup-r@v2
62+
with:
63+
r-version: '4.4.2'
5764
- uses: julia-actions/setup-julia@v2
5865
with:
5966
version: '1'

0 commit comments

Comments
 (0)