Skip to content

Add Windows and Mac runners #156

Add Windows and Mac runners

Add Windows and Mac runners #156

Workflow file for this run

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}}