Skip to content

[ENH] do not add subject to layout if it is empty #200

[ENH] do not add subject to layout if it is empty

[ENH] do not add subject to layout if it is empty #200

Workflow file for this run

---
name: tests_examples
on:
push:
branches:
- master
- dev
pull_request:
branches: ['*']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Install MATLAB
uses: matlab-actions/[email protected]
with:
release: R2020a
- name: Clone bids-matlab
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 1
- name: Install bids example
run: |
cd demos/notebooks
make install
- name: Run commands
uses: matlab-actions/[email protected]
with:
command: cd('demos/notebooks'); success = test_notebooks(); assert(success);