This repository was archived by the owner on Mar 27, 2025. It is now read-only.
Add tests for Test Result Visualization #192
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: | |
run-tests-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@v4 | |
- name: Setup Java 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: maven | |
- name: Setup MATLAB | |
id: setup-matlab | |
uses: matlab-actions/setup-matlab@v2 | |
- name: Running tests | |
run: mvn --batch-mode verify | |
env: | |
MATLAB_ROOT: ${{ steps.setup-matlab.outputs.matlabroot }} | |
MLM_LICENSE_TOKEN: ${{ secrets.MLM_LICENSE_TOKEN}} |