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 3077db5 commit a7cc404Copy full SHA for a7cc404
public/scripts/workflow.js
@@ -118,6 +118,18 @@ function generateWorkflow({
118
119
- name: Run MATLAB tests
120
uses: matlab-actions/run-tests@v2
121
+
122
+ # Use run-build to invoke the MATLAB build tool if you have a buildfile.m.
123
+ # - name: Run MATLAB build
124
+ # uses: matlab-actions/run-build@v2
125
+ # with:
126
+ # tasks: test
127
128
+ # Use run-command to run MATLAB scripts, functions, and statements.
129
+ # - name: Run MATLAB command
130
+ # uses: matlab-actions/run-command@v2
131
132
+ # command: results = runtests('IncludeSubfolders',true); assertSuccess(results);
133
`);
134
}
135
0 commit comments