This repository was archived by the owner on Mar 27, 2025. It is now read-only.
Add Windows and Mac runners #156
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: | |
name: Run System tests | |
runs-on: [ubuntu-latest, windows-latest, macos-latest] | |
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}} |