Skip to content

Added an example for BIDS dataset in tutorial notebook #13

Added an example for BIDS dataset in tutorial notebook

Added an example for BIDS dataset in tutorial notebook #13

# 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
# Workflow for main branch
name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
py:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [ "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
pip install .
- name: Lint with flake8
run: |
make lint
- name: Test with pytest
run: |
pytest
py312:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Python 3.12 removed distutils.
# It is deprecated since Python 3.10.
python -m pip install --upgrade setuptools
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
pip install .
- name: Lint with flake8
run: |
make lint
- name: Test with pytest
run: |
pytest