Skip to content

Test R2026a

Test R2026a #5

Workflow file for this run

# Run tInstall on Ubuntu against supported Python versions
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
name: Test R2026a
on:
# Allows you to run this workflow manually from the Actions tab as long as it's on the main branch
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test-python-engine:
strategy:
matrix:
python: ["3.13", "3.12", "3.11", "3.10", "3.9"]
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v3.1.3
with:
python-version: ${{ matrix.python }}
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
with:
release: R2026a
- uses: actions/checkout@v3
- name: Run tests
uses: matlab-actions/run-tests@v1