Skip to content

Fetch BIDS information from schema #61

Fetch BIDS information from schema

Fetch BIDS information from schema #61

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install
run: |
python -m pip install --upgrade pip
pip install .[dev,test]
- name: Check quality
run: |
black --check bids2table tests
isort --check-only bids2table tests
flake8 bids2table tests
pylint --fail-under 9.0 bids2table
mypy bids2table
- name: Run tests
run: pytest --cov=bids2table tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3