Skip to content

Improving workflow for dual frame optimization #104

Improving workflow for dual frame optimization

Improving workflow for dual frame optimization #104

Workflow file for this run

name: Unittests
on:
push:
branches:
- main
- 'stable/**'
pull_request:
branches:
- main
- 'stable/**'
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test using tox environment
shell: bash
run: |
pver=${{ matrix.python-version }}
tox -e py${pver/./}
tox -e py${pver/./}-notebook