Skip to content

Commit 316a262

Browse files
authored
add julia install to workflow
Added setup for Julia and installation of Jupyter kernel.
1 parent 2b99b6f commit 316a262

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/docs.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ jobs:
3535
pip install setuptools --upgrade
3636
pip install .[test,docs]
3737
38+
- name: Set up Julia
39+
uses: julia-actions/setup-julia@v1
40+
with:
41+
version: '1.11'
42+
43+
- name: Install Julia kernel for Jupyter
44+
run: |
45+
julia -e 'using Pkg; Pkg.add("IJulia"); using IJulia; IJulia.installkernel("Julia 1.11")'
46+
3847
- name: Make docs
3948
run: |
4049
cd docs

0 commit comments

Comments
 (0)