Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/check_markdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Check Markdown

on:
push:
branches:
- master
pull_request:
branches: '*'

jobs:
build:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 1

- uses: actions/setup-node@v2
with:
node-version: '10'

- name: Install dependencies and check markdown
run: |
npm install `cat npm-requirements.txt`
npx remark README.md --frail
npx remark ./notebooks/ --frail
npx remark ./tests/ --frail
npx remark ./docs/ --frail


1 change: 0 additions & 1 deletion .github/workflows/check_md_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
push:
branches:
- master
- dev
pull_request:
branches: '*'

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/miss_hit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
- dev
pull_request:
branches: '*'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/moxunit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: MOxUnit

on:
push:
Expand Down
9 changes: 0 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,3 @@ jobs:

- name: "BIDS validator: create and check dataset"
script: octave $OCTFLAGS --eval "test_makeRawDataset" && bids-validator `pwd`/output/raw/ --ignoreNiftiHeaders

- name: "Check markdown"
before_script:
- npm install `cat npm-requirements.txt`
script:
- remark README.md --frail
- remark ./notebooks/ --frail
- remark ./tests/ --frail
- remark ./docs/ --frail
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Here are the naming templates used.

- Behavior

```
```bash
sub-<label>[_ses-<label>]_task-<label>[_acq-<label>][_run-<index>]_events.tsv
sub-<label>[_ses-<label>]_task-<label>[_acq-<label>][_run-<index>]_events.json
sub-<label>[_ses-<label>]_task-<label>[_acq-<label>][_run-<index>]_beh.tsv
Expand All @@ -96,19 +96,19 @@ sub-<label>[_ses-<label>]_task-<label>[_acq-<label>][_run-<index>]_beh.json

- BOLD

```
```bash
sub-<label>[_ses-<label>]_task-<label>[_acq-<label>][_ce-<label>][_dir-<label>][_rec-<label>][_run-<index>][_echo-<index>]_<contrast_label>.nii[.gz]
```

- iEEG

```
```bash
sub-<label>[_ses-<label>]_task-<task_label>[_run-<index>]_ieeg.json
```

- EEG

```
```bash
sub-<label>[_ses-<label>]_task-<label>[_run-<index>]_eeg.<manufacturer_specific_extension>
sub-<label>[_ses-<label>]_task-<label>[_run-<index>]_eeg.json
```
Expand All @@ -131,13 +131,13 @@ current format `<matches>_recording-eyetracking_physio.tsv.gz`

future BEP format in a dedicated eyetracker folder

```
```bash
sub-<participant_label>[_ses-<label>][_acq-<label>]_task-<task_label>_eyetrack.<manufacturer_specific_extension>
```

- Stim and physio

```
```bash
<matches>[_recording-<label>]_physio.tsv.gz
<matches>[_recording-<label>]_physio.json
<matches>[_recording-<label>]_stim.tsv.gz
Expand Down Expand Up @@ -167,6 +167,7 @@ Thanks goes to these wonderful people

<!-- markdownlint-enable -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the
Expand Down