The Setup MATLAB action enables you to set up MATLAB® and other MathWorks® products on a GitHub®-hosted (Linux®, Windows®, or macOS) runner or self-hosted UNIX® (Linux or macOS) runner. When you specify this action as part of your workflow, the action sets up your preferred MATLAB release (R2021a or later) on the runner. If you do not specify a release, the action sets up the latest release of MATLAB. As part of the setup process, the action prepends MATLAB to the PATH
system environment variable.
Note: For GitHub-hosted runners, the Setup MATLAB action automatically includes the dependencies required to run MATLAB and other MathWorks products. However, if you are using a self-hosted runner, you must ensure that the required dependencies are available on your runner. For details, see Required Software on Self-Hosted Runners.
Once you set up MATLAB on a runner, you can build and test your MATLAB project as part of your workflow. To execute code on the runner, include the Run MATLAB Build, Run MATLAB Tests, or Run MATLAB Command action in your workflow.
Using the latest release of MATLAB on a GitHub-hosted runner, run the default tasks in a build file named buildfile.m
in the root of your repository as well as all the tasks on which they depend. To set up the latest release of MATLAB on the runner, specify the Setup MATLAB action in your workflow. To run the tasks, specify the Run MATLAB Build action.
name: Run Default Tasks in Build File
on: [push]
jobs:
my-job:
name: Run MATLAB Build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
- name: Run build
uses: matlab-actions/run-build@v2
Run your MATLAB and Simulink® tests in parallel (requires Parallel Computing Toolbox™) using the latest release of the required products on a GitHub-hosted runner. To set up the latest release of MATLAB, Simulink, Simulink Test, and Parallel Computing Toolbox on the runner, specify the Setup MATLAB action with its products
input in your workflow. To run the tests in parallel, specify the Run MATLAB Tests action with its use-parallel
input specified as true
.
name: Run Tests in Parallel
on: [push]
jobs:
my-job:
name: Run MATLAB and Simulink Tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up products
uses: matlab-actions/setup-matlab@v2
with:
products: >
Simulink
Simulink_Test
Parallel_Computing_Toolbox
- name: Run tests
uses: matlab-actions/run-tests@v2
with:
use-parallel: true
Using the latest release of MATLAB on a GitHub-hosted runner, run a script named myscript.m
in the root of your repository. To set up the latest release of MATLAB on the runner, specify the Setup MATLAB action in your workflow. To run the script, specify the Run MATLAB Command action.
name: Run MATLAB Script
on: [push]
jobs:
my-job:
name: Run MATLAB Script
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
- name: Run script
uses: matlab-actions/run-command@v2
with:
command: myscript
When you define a workflow using the Setup MATLAB action, you need a MATLAB batch licensing token if your project is private or if your workflow includes transformation products, such as MATLAB Coder™ and MATLAB Compiler™. Batch licensing tokens are strings that enable MATLAB to start in noninteractive environments. You can request a token by submitting the MATLAB Batch Licensing Pilot form.
To use a MATLAB batch licensing token:
- Set the token as a secret. For more information about secrets, see Using secrets in GitHub Actions.
- Map the secret to an environment variable named
MLM_LICENSE_TOKEN
in your workflow.
For example, define a workflow that runs the tests in your private project by using the latest release of MATLAB on a self-hosted UNIX runner:
- To set up the latest release of MATLAB on the self-hosted UNIX runner, specify the Setup MATLAB action in your workflow. (The runner must include all the dependencies required to run MATLAB.)
- To run the tests, specify the Run MATLAB Tests action. License MATLAB to run the tests by mapping a secret to the
MLM_LICENSE_TOKEN
environment variable in your workflow. In this example,MyToken
is the name of the secret that holds the batch licensing token.
name: Use MATLAB Batch Licensing Token
on: [push]
env:
MLM_LICENSE_TOKEN: ${{ secrets.MyToken }}
jobs:
my-job:
name: Run MATLAB Tests in Private Project
runs-on: self-hosted
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
- name: Run tests
uses: matlab-actions/run-tests@v2
The Setup MATLAB action supports the Linux, Windows, and macOS platforms. Define a matrix of job configurations to run a build using the MATLAB build tool on all the supported platforms. This workflow runs three jobs, one for each value in the variable os
. For more information about matrices, see Using a matrix for your jobs.
name: Build Across Multiple Platforms
on: [push]
jobs:
my-job:
name: Run MATLAB Build
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
- name: Run build
uses: matlab-actions/run-build@v2
with:
tasks: test
When you define your workflow in the .github/workflows
directory of your repository, specify the Setup MATLAB action as matlab-actions/setup-matlab@v2
. The action accepts optional inputs.
Input | Description |
---|---|
release |
(Optional) MATLAB release to set up. You can specify R2021a or a later release. By default, the value of
Example: |
products |
(Optional) Products to set up in addition to MATLAB, specified as a list of product names separated by spaces. You can specify For a list of supported products, open the input file for your preferred release from the For an example of how to use the Example: |
cache |
(Optional) Option to enable caching with GitHub Actions, specified as Example: |
Before using the Setup MATLAB action to set up MATLAB and other MathWorks products on a self-hosted UNIX runner, verify that the required software is installed on your runner.
If you are using a Linux runner, verify that the following software is installed on your runner:
- Third-party packages required to run the
mpm
command — To view the list ofmpm
dependencies, refer to the Linux section of Get MATLAB Package Manager. - All MATLAB dependencies — To view the list of MATLAB dependencies, go to the MATLAB Dependencies repository on GitHub. Then, open the
<release>/<system>/base-dependencies.txt
file for your MATLAB release and your runner's operating system.
If you are using a macOS runner with an Apple silicon processor, verify that Java® Runtime Environment (JRE™) is installed on your runner. For information about this requirement and to get a compatible JRE version, see MATLAB on Apple Silicon Macs.
Tip: One convenient way to include the required dependencies on a self-hosted runner is to specify the MATLAB Dependencies container image on Docker® Hub in your workflow.
Product licensing for your workflow depends on your project visibility as well as the type of products to set up:
- Public project — If your workflow does not include transformation products, such as MATLAB Coder and MATLAB Compiler, then the action automatically licenses any products that you set up. If your workflow includes transformation products, you can request a MATLAB batch licensing token by submitting the MATLAB Batch Licensing Pilot form.
- Private project — The action does not automatically license any products for you. You can request a batch licensing token by submitting the MATLAB Batch Licensing Pilot form.
To use a MATLAB batch licensing token, first set it as a secret. Then, map the secret to an environment variable named MLM_LICENSE_TOKEN
in your workflow. For an example, see Use MATLAB Batch Licensing Token.
- The Setup MATLAB action automatically includes the MATLAB batch licensing executable (
matlab-batch
). To use a MATLAB batch licensing token in a workflow that does not use this action, you must first download the executable and add it to the system path. - When you use the Setup MATLAB action, you execute third-party code that is licensed under separate terms.
- Action for Running MATLAB Builds
- Action for Running MATLAB Tests
- Action for Running MATLAB Commands
- Continuous Integration with MATLAB and Simulink
If you have any questions or suggestions, contact MathWorks at [email protected].