Skip to content

Merge pull request #5 from Pluze/codex/update-agent-git-governance #60

Merge pull request #5 from Pluze/codex/update-agent-git-governance

Merge pull request #5 from Pluze/codex/update-agent-git-governance #60

Workflow file for this run

name: MATLAB Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
pure-matlab-tests:
name: Pure MATLAB Test Suite
runs-on: ubuntu-latest
env:
MLM_LICENSE_TOKEN: ${{ secrets.MLM_LICENSE_TOKEN }}
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v3
with:
release: R2025a
- name: Run pure MATLAB tests
uses: matlab-actions/run-command@v3
with:
command: addpath(fullfile(pwd,'tests')); run_all_tests(false);