You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ the command to ensure that builds fail when necessary. When you use this task,
12
12
all of the required files must be on the MATLAB search path.
13
13
14
14
**Note**: By running the code in this action, you will be executing third-party
15
-
code that is licensed under separate terms.
15
+
code that is licensed under separate terms.;
16
16
17
17
## Usage
18
18
@@ -22,7 +22,7 @@ You can use this action `with`:
22
22
| `command` | (Required) Script, function, or statement to execute. <br/> If the value of `command` is the name of a MATLAB script or function, do not specify the file extension. If you specify more than one MATLAB command, use a comma or semicolon to separate the commands. <br/> **Example**: `myscript` <br/> **Example**: `results = runtests, assertSuccess(results);`
23
23
24
24
### Using a GitHub-hosted runner?
25
-
If you are using a GitHub-hosted runner, you can use the [Set up MATLAB action](https://github.com/mathworks/setup-matlab-action/) to install MATLAB on the runner.
25
+
If you are using a GitHub-hosted runner, you can use the [Set up MATLAB action](https://github.com/matlab-actions/setup-matlab/) to install MATLAB on the runner.
26
26
27
27
## Example
28
28
@@ -36,17 +36,17 @@ jobs:
36
36
runs-on: ubuntu-latest
37
37
steps:
38
38
# Set up MATLAB using this action first if running on a GitHub-hosted runner!
39
-
- uses: mathworks/setup-matlab-action@v0
39
+
- uses: matlab-actions/setup-matlab@v0
40
40
41
41
- name: Run "disp('hello world')" directly using MATLAB
42
-
uses: mathworks/run-matlab-command-action@v0
42
+
uses: matlab-actions/run-command@v0
43
43
with:
44
44
command: disp('hello world')
45
45
```
46
46
47
47
## See also
48
-
- [Set up MATLAB action](https://github.com/mathworks/setup-matlab-action/)
0 commit comments