We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fe9c9e commit d9bc196Copy full SHA for d9bc196
1 file changed
.github/workflows/conformance.yml
@@ -30,6 +30,11 @@ jobs:
30
echo "$HOME/.deno/bin" >> $GITHUB_PATH
31
$HOME/.deno/bin/deno jupyter --install
32
kernel-name: deno
33
+ - name: irkernel
34
+ install: |
35
+ Rscript -e "install.packages('IRkernel', repos='https://cloud.r-project.org')"
36
+ Rscript -e "IRkernel::installspec()"
37
+ kernel-name: ir
38
39
steps:
40
- uses: actions/checkout@v4
@@ -43,6 +48,12 @@ jobs:
43
48
with:
44
49
python-version: "3.12"
45
50
51
+ - name: Set up R
52
+ if: matrix.kernel.name == 'irkernel'
53
+ uses: r-lib/actions/setup-r@v2
54
+ with:
55
+ r-version: "4.3"
56
+
46
57
- name: Cache cargo
47
58
uses: actions/cache@v4
59
0 commit comments