Skip to content

Debug CI tests

Debug CI tests #69

Workflow file for this run

name: "test"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
defaults:
run:
shell: bash
steps:
# check-out repo and install python
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
cache: "pip"
- name: Install dependencies
run: pip install ".[dev,polars,plotting]"
- name: Run pytests
run: python -m pytest --verbose tests