Skip to content

Merge pull request #17 from henadzit/feat/array-parametrization #80

Merge pull request #17 from henadzit/feat/array-parametrization

Merge pull request #17 from henadzit/feat/array-parametrization #80

Workflow file for this run

name: ci
on: [ push, pull_request ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
steps:
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install and configure Poetry
run: |
pip install -U pip poetry
poetry config virtualenvs.create false
- name: Run CI
run: make ci