[ENH] add BIDS app CLI #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: docker build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
sudo apt-get -y -qq update | |
sudo apt-get -y install git-annex | |
pip install datalad | |
- name: get test data | |
run: make data_ds000001 | |
- name: Build the Docker image | |
run: | | |
make build | |
docker images | |
- name: help | |
run: docker run --rm cat12 --help | |
- name: quick test | |
run: | | |
make view | |
make copy | |
- name: segment | |
run: make ds000001 |