Skip to content

Basic usage instructions #12

Basic usage instructions

Basic usage instructions #12

Workflow file for this run

name: Tests
on: [push]
defaults:
run:
shell: bash
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python:
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
mode:
- normal
steps:
- name: Set up environment
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -e .
pip install pytest
- name: Run tests
run: |
python -m pytest -vvs nwb2bids