Skip to content

Add Windows and macOS support to qualify_25a CI workflow #3

Add Windows and macOS support to qualify_25a CI workflow

Add Windows and macOS support to qualify_25a CI workflow #3

Workflow file for this run

# Run tInstall on Ubuntu against python versions 3.12, 3.11, 3.10 and 3.9
name: Test R2025a
on:
push:
branches:
- R2025a
pull_request:
branches:
- R2025a
# Allows you to run this workflow manually from the Actions tab
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.12", "3.11", "3.10", "3.9"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python }}
- name: Set up MATLAB
uses: matlab-actions/[email protected]
with:
release: R2025a
- name: Checkout code
uses: actions/[email protected]
- name: Run tests
uses: matlab-actions/[email protected]