Skip to content

Feature/include nwb pyaldata #122

Feature/include nwb pyaldata

Feature/include nwb pyaldata #122

name: Tests with processing modules
on: [push, pull_request]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["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 processing
- name: Run pytest
run: poetry run pytest