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
10 changes: 10 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,16 @@
"code",
"review"
]
},
{
"login": "mwmaclean",
"name": "Michèle MacLean",
"avatar_url": "https://avatars.githubusercontent.com/u/54547865?v=4",
"profile": "https://github.com/mwmaclean",
"contributions": [
"code",
"ideas"
]
}
],
"contributorsPerLine": 7,
Expand Down
32 changes: 0 additions & 32 deletions .github/workflows/check_markdown.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: miss_hit
name: miss_hit_quality

on:
push:
Expand Down Expand Up @@ -29,10 +29,6 @@ jobs:
python -m pip install --upgrade pip setuptools
pip3 install -r requirements.txt

- name: MISS_HIT Code style
run: |
mh_style --process-slx

- name: MISS_HIT Metrics
run: |
mh_metric --ci
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/miss_hit_style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: miss_hit_style

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

jobs:
build:

runs-on: ubuntu-latest

steps:

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

- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
python-version: 3.6

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip3 install -r requirements.txt

- name: MISS_HIT Code style
run: |
mh_style

17 changes: 3 additions & 14 deletions .github/workflows/run_system_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,9 @@ jobs:
make -C spm12/src PLATFORM=octave install
octave $OCTFLAGS --eval "addpath(fullfile(pwd, 'spm12')); savepath();"

- name: Update octave path
run: |
octave $OCTFLAGS --eval "initCppSpm; savepath();"

- name: Prepare data
run: |
inputs_folder='demos/MoAE/inputs/'
mkdir $inputs_folder
curl http://www.fil.ion.ucl.ac.uk/spm/download/data/MoAEpilot/MoAEpilot.bids.zip --output $inputs_folder'MoAEpilot.zip'
unzip $inputs_folder'MoAEpilot.zip' -d $inputs_folder
mv $inputs_folder/MoAEpilot $inputs_folder/raw


- name: Run system tests
run: |
cd demos/MoAE
octave $OCTFLAGS --eval "MoAEpilot_run"
cd manualTests/
octave $OCTFLAGS --eval "systemTestMoAE"

2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Run tests
run: |
octave $OCTFLAGS --eval "runTests"
octave $OCTFLAGS --eval "run_tests"
cat test_report.log | grep 0
bash <(curl -s https://codecov.io/bash)

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ docs/build/*

# ignore virtual env
cpp_spm/*
env/*

# visual studio code stuff
.vscode
Expand Down
11 changes: 0 additions & 11 deletions .remarkrc

This file was deleted.

Loading