We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53ac3e commit edce9d4Copy full SHA for edce9d4
.github/workflows/publish-release.yml
@@ -81,10 +81,26 @@ jobs:
81
py3to: "3.13"
82
83
steps:
84
- - uses: spm/spm-python/.github/workflows/compile_spm.yml@main
85
- with:
86
- matlab-version: ${{ matrix.matlab }}
87
-
+ - name: Set up MATLAB
+ uses: matlab-actions/setup-matlab@v2
+ with:
+ cache: True
88
+ release: ${{ matrix.matlab }}
89
+ products: |
90
+ MATLAB_Compiler
91
+ MATLAB_Compiler_SDK
92
+
93
+ - name: Check out repository
94
+ uses: actions/checkout@v4
95
96
+ - name: Run MPython
97
+ uses: matlab-actions/run-command@v2
98
99
+ command: |
100
+ cd('.mpython');
101
+ addpath(genpath('.'));
102
+ spm_make_python('.', true, false);
103
104
- name: Set up Python
105
uses: actions/setup-python@v5
106
with:
0 commit comments