Skip to content

Updates to Matlab wrapper #236

Updates to Matlab wrapper

Updates to Matlab wrapper #236

Workflow file for this run

name: Wrap CI for Linux
on: [pull_request]
jobs:
build:
name: Tests for 🐍 ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Dependencies
run: |
sudo apt-get -y update
sudo apt install cmake
- name: Install uv and set the ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Python Dependencies
run: uv sync --locked --all-extras --dev
- name: Build and Test
run: |
# Build
cmake .
# Use Pytest to run all the tests.
uv run pytest tests