samepath, fix normalize, canonical #190
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: 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: | |
matrix: | |
os: [ubuntu-latest] | |
release: [R2020b, R2021a, R2021b, R2022a, R2023a, R2023b, R2024a] | |
include: | |
- os: macos-latest | |
release: R2024a | |
- os: windows-latest | |
release: R2024a | |
steps: | |
- name: Install MATLAB | |
uses: matlab-actions/setup-matlab@v2 | |
with: | |
release: ${{ matrix.release }} | |
- uses: actions/checkout@v4 | |
- name: Run Matlab tests (buildtool) | |
if: ${{ matrix.release >= 'R2022b' }} | |
timeout-minutes: 10 | |
uses: matlab-actions/run-build@v2 | |
- name: Run tests (manual) | |
if: ${{ matrix.release < 'R2022b' }} | |
timeout-minutes: 10 | |
uses: matlab-actions/run-tests@v2 | |
with: | |
select-by-folder: test |