Skip to content

Add get_trial_lengths and extend get_trial_length to handle dataframe… #3

Add get_trial_lengths and extend get_trial_length to handle dataframe…

Add get_trial_lengths and extend get_trial_length to handle dataframe… #3

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Tests
on: push
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install poetry
run: pip install poetry
- name: Install project
run: poetry install --with dev
- name: Run pytest
run: poetry run pytest