Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/qualify_25a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,29 +14,29 @@ on:
# 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: ubuntu-latest
runs-on: ${{ matrix.os }}

steps:
- name: Set up Python
uses: actions/setup-python@v3.1.3
uses: actions/setup-python@v5.6.0
with:
python-version: ${{ matrix.python }}

- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
uses: matlab-actions/setup-matlab@v2.5.0
with:
release: R2025a

- uses: actions/checkout@v3
- name: Checkout code
uses: actions/[email protected]

- name: Run tests
uses: matlab-actions/run-tests@v1
uses: matlab-actions/run-tests@v2.1.1
Loading