Skip to content

CI

CI #27

Workflow file for this run

name: CI
on: [workflow_dispatch, pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3 # Check out the code
- name: Install Dependencies
run: |
pip install mne==1.3.1
python -c 'import mne; mne.datasets.sample.data_path(verbose=True)';
python -c 'import mne; mne.datasets.testing.data_path(verbose=True)';
- uses: fastai/workflows/nbdev-ci@master