Skip to content

feat: add feedback strategy comparison experiment #2

feat: add feedback strategy comparison experiment

feat: add feedback strategy comparison experiment #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install project and development dependencies
run: python -m pip install -e ".[dev]" build
- name: Run tests
run: python -m pytest -q
- name: Build wheel
run: python -m build --wheel