Skip to content

Add kml_strict multi-start tuning and parity tests; bump to 0.1.1 #6

Add kml_strict multi-start tuning and parity tests; bump to 0.1.1

Add kml_strict multi-start tuning and parity tests; bump to 0.1.1 #6

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Lint with ruff
run: ruff check src/ tests/
- name: Run tests
run: pytest -q
test-plotnine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install with plotnine
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev,plot]"
- name: Run tests
run: pytest -q