Skip to content

feat: add learning curve method #49

feat: add learning curve method

feat: add learning curve method #49

Workflow file for this run

name: Python Tests
on:
pull_request:
push:
branches:
- master
- dev
jobs:
pytest:
name: "pytest (Python ${{ matrix.python-version }})"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: Checkout Repository
uses: actions/checkout@v7.0.0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package and test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install -r test-requirements.txt
- name: Run pytest
run: pytest -m "not server"