This repository was archived by the owner on Mar 27, 2025. It is now read-only.
Add matrix strategy #157
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: using mpm to install MATLAB | |
on: push | |
jobs: | |
my-job: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
name: Run System tests | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Setup MATLAB | |
id: setup-matlab | |
uses: matlab-actions/setup-matlab@v2 | |
- name: Running tests | |
run: mvn test-compile failsafe:integration-test | |
env: | |
MATLAB_ROOT: ${{ steps.setup-matlab.outputs.matlabroot }} | |
MLM_LICENSE_TOKEN: ${{ secrets.MLM_LICENSE_TOKEN}} |