We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d865c82 commit 8637ecbCopy full SHA for 8637ecb
1 file changed
.github/workflows/CI.yml
@@ -35,7 +35,13 @@ jobs:
35
steps:
36
- name: Install matplotlib
37
run: |
38
- sudo apt-get install -y python3-matplotlib
+ if [ "$RUNNER_OS" = "Linux" ]; then
39
+ sudo apt-get update
40
+ sudo apt-get install -y python3-matplotlib
41
+ fi
42
+ shell: bash
43
+ - name: Build PyCall
44
+ run: julia --project -e 'ENV["PYTHON"]=""; using Pkg; Pkg.instantiate(); Pkg.add("PyCall"); Pkg.build("PyCall")'
45
shell: bash
46
- uses: actions/checkout@v6
47
- uses: julia-actions/setup-julia@v2
0 commit comments