Skip to content

Affine-parametric Operators, Parametric ROMs #107

Affine-parametric Operators, Parametric ROMs

Affine-parametric Operators, Parametric ROMs #107

Workflow file for this run

# test_src.yml
# Run unit tests for all supported platforms and Python versions.
name: CI-src
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
tests:
strategy:
max-parallel: 4
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run tests
run: |
python -m tox -e py${{ matrix.python-version }}