Skip to content

Commit c726112

Browse files
committed
Adjust setup-matlab in doc
1 parent 93ad9b7 commit c726112

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The [Run MATLAB Command](#run-matlab-command) GitHub® action enables you to
44

55
- To use a self-hosted runner, you must set up a computer with MATLAB (R2013b or later) as your runner. The action uses the topmost MATLAB version on the runner's system path.
66

7-
- To use a GitHub-hosted runner, you must include the [Set Up MATLAB](https://github.com/matlab-actions/setup-matlab/) action in your workflow to install MATLAB on the runner. Currently, this action is available only for public projects. It does not install transformation products, such as MATLAB Coder™ and MATLAB Compiler™.
7+
- To use a GitHub-hosted runner, you must include the [Setup MATLAB](https://github.com/matlab-actions/setup-matlab/) action in your workflow to install MATLAB on the runner. Currently, this action is available only for public projects. It does not install transformation products, such as MATLAB Coder™ and MATLAB Compiler™.
88

99
## Usage Examples
1010
Use the **Run MATLAB Command** action to run MATLAB scripts, functions, and statements. You can use this action to flexibly customize your test run or add a MATLAB related step to your workflow.
@@ -29,7 +29,7 @@ jobs:
2929
```
3030
3131
### Run MATLAB Commands on GitHub-Hosted Runner
32-
Before you run MATLAB code or Simulink models on a GitHub-hosted runner, first use the [Set Up MATLAB](https://github.com/matlab-actions/setup-matlab/) action. The action installs your specified MATLAB release (R2020a or later) on a Linux® virtual machine. If you do not specify a release, the action installs the latest release of MATLAB.
32+
Before you run MATLAB code or Simulink models on a GitHub-hosted runner, first use the [Setup MATLAB](https://github.com/matlab-actions/setup-matlab/) action. The action installs your specified MATLAB release (R2020a or later) on a Linux® virtual machine. If you do not specify a release, the action installs the latest release of MATLAB.
3333
3434
For example, install the latest release of MATLAB on a GitHub-hosted runner, and then use the **Run MATLAB Command** action to execute your MATLAB commands.
3535
@@ -43,7 +43,7 @@ jobs:
4343
steps:
4444
- name: Check out repository
4545
uses: actions/checkout@v2
46-
- name: Install MATLAB
46+
- name: Set up MATLAB
4747
uses: matlab-actions/setup-matlab@v1
4848
- name: Run commands
4949
uses: matlab-actions/run-command@v1
@@ -69,7 +69,7 @@ When you use the **Run MATLAB Command** action, you execute third-party code tha
6969

7070
## See Also
7171
- [Action for Running MATLAB Tests](https://github.com/matlab-actions/run-tests/)
72-
- [Action for Installing MATLAB on GitHub-Hosted Runner](https://github.com/matlab-actions/setup-matlab/)
72+
- [Action for Setting Up MATLAB on GitHub-Hosted Runner](https://github.com/matlab-actions/setup-matlab/)
7373
- [Continuous Integration with MATLAB and Simulink](https://www.mathworks.com/solutions/continuous-integration.html)
7474

7575
## Contact Us

0 commit comments

Comments
 (0)