Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Add tests for Test Result Visualization #192

Add tests for Test Result Visualization

Add tests for Test Result Visualization #192

Workflow file for this run

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