Skip to content

enable sparse matrix in reconcile #100

enable sparse matrix in reconcile

enable sparse matrix in reconcile #100

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
all-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Clone repo
uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install uv && uv pip install --system ".[dev,polars]"
- name: Run pytest
run: uv run pytest