Skip to content

chore(deps): bump mne from 1.5.1 to 1.6.1 #33

chore(deps): bump mne from 1.5.1 to 1.6.1

chore(deps): bump mne from 1.5.1 to 1.6.1 #33

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [ main ]
jobs:
tests:
name: Unittest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
python: [ '3.10.x' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install Poetry
uses: abatilo/actions-poetry@v2
- name: Setup poetry cache
uses: actions/cache@v3
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry lock
poetry install --no-root --with dev
- name: Run tests
run: poetry run pytest --cov=neurocode --cov-report=xml tests
- name: Upload coverage report
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}