Skip to content

issue-14: fixed minor bugs found when testing #4

issue-14: fixed minor bugs found when testing

issue-14: fixed minor bugs found when testing #4

Workflow file for this run

name: Run MATLAB Tests
on:
pull_request:
branches: main
push:
branches: main
workflow_dispatch:
jobs:
tests:
name: MATLAB Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
matlab: ["R2022b"]
os: [ubuntu-latest, windows-latest]
env:
MLM_LICENSE_FILE: ${{ secrets.MATLAB_LICENSE }}
steps:
- name: Check out repository
uses: actions/checkout@main
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
with:
release: ${{ matrix.matlab }}
cache: true
- name: Run tests
uses: matlab-actions/run-tests@v2
with:
source-folder: 'onc'
env:
TOKEN: ${{ secrets.TOKEN }}