-
-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (38 loc) · 1.03 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: ci
on:
push:
paths:
- "**.m"
- ".github/workflows/ci.yml"
jobs:
matlab:
timeout-minutes: 15
runs-on: ${{ matrix.os }}
# R2022b has a bug with test parameter {"h"} syntax
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
release: [R2021a, R2023a, R2023b, R2024a, latest-including-prereleases]
include:
- os: macos-latest
release: latest-including-prereleases
- os: windows-latest
release: latest-including-prereleases
steps:
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2
with:
release: ${{ matrix.release }}
- uses: actions/checkout@v4
# >= R2022b
- name: Run Matlab tests (buildtool)
if: ${{ matrix.release != 'R2021a' }}
timeout-minutes: 10
uses: matlab-actions/run-build@v2
- name: Run tests (manual)
if: ${{ matrix.release == 'R2021a' }}
timeout-minutes: 10
uses: matlab-actions/run-tests@v2
with:
select-by-folder: test