Skip to content

[pre-commit.ci] pre-commit autoupdate #769

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #769

name: "matlab: tests"
on:
push:
branches:
- master
- dev
pull_request:
branches: ["*"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
version: [R2021a, R2023a]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
runs-on: ${{matrix.os}}
steps:
- name: Install MATLAB
uses: matlab-actions/[email protected]
with:
# MATLAB release to set up R2020a
release: ${{matrix.version}}
- name: Clone bids-matlab
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- name: Install bids example
run: |
cd tests
make data
- name: Install Moxunit and MOcov
run: |
git clone https://github.com/MOxUnit/MOxUnit.git --depth 1
git clone https://github.com/MOcov/MOcov.git --depth 1
- name: Run commands
uses: matlab-actions/[email protected]
with:
command: run MOxUnit/MOxUnit/moxunit_set_path(); addpath(fullfile(pwd, 'MOcov', 'MOcov')); addpath(getenv('GITHUB_WORKSPACE')); success = run_tests(); assert(success);
# - name: Code coverage
# uses: codecov/codecov-action@v1
# with:
# file: coverage.xml # optional
# flags: unittests # optional
# name: codecov-umbrella # optional
# fail_ci_if_error: true # optional (default = false)