Skip to content

Merge pull request #58 from Remi-Gau/dependabot/github_actions/matlab… #135

Merge pull request #58 from Remi-Gau/dependabot/github_actions/matlab…

Merge pull request #58 from Remi-Gau/dependabot/github_actions/matlab… #135

---
name: 'MATLAB: test and coverage'
# Installs
# - MATLAB
# - MOXunit
# - MOcov
# run .github/workflows/tests_matlab.m
# If tests pass, uploads coverage to codecov
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- main
- dev
pull_request:
branches:
- '*'
jobs:
matlab_tests:
strategy:
matrix:
version: [R2021a, R2022a, R2023a]
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Install MAT
uses: matlab-actions/setup-matlab@v1.2.5
with:
release: ${{ matrix.version }}
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- 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 tests
uses: matlab-actions/run-command@v2.0.0
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run run_tests_ci;
- name: Code coverage
uses: codecov/codecov-action@v4
with:
file: coverage.xml
flags: ${{ matrix.os }}_matlab-${{ matrix.version }}
name: codecov-umbrella
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}