Add tests for R2023b #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run tInstall on Ubuntu against python versions 3.11, 3.10 and 3.9 | |
name: Test R2023b | |
on: | |
push: | |
branches: | |
- R2023b | |
pull_request: | |
branches: | |
- R2023b | |
# 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.11", "3.10", "3.9"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Set up MATLAB | |
uses: matlab-actions/setup-matlab@v1 | |
with: | |
release: R2023b | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
uses: matlab-actions/run-tests@v1 |