Skip to content

Linux

Linux #335

Workflow file for this run

name: Linux
on:
workflow_dispatch:
schedule:
- cron: '0 23 * * 1'
jobs:
tests:
runs-on: ubuntu-latest
name: Linux CPython ${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Build and install
run: |
python -m pip install --upgrade pip
CMAKE_ARGS="-DMMU_CICD_MODE=ON -DMMU_ENABLE_INTERNAL_TESTS=ON" python -m pip install ".[test]" --verbose
- name: Test
run: |
cd tests
pytest -vv