Merge pull request #151 from MShabara/upcrossing #2
This file contains hidden or 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: MHKiT-MATLAB Code Compatibility Test | |
| on: | |
| push: | |
| branches: [master, develop] | |
| pull_request: | |
| branches: [master, develop] | |
| jobs: | |
| main: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # os: [macos-13, ubuntu-latest, windows-latest] | |
| os: [ubuntu-latest] | |
| python-version: [3.8, 3.9, "3.10", 3.11] | |
| matlab-version: [R2021b, R2022a, R2022b, R2023a, R2023b] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out MHKiT-MATLAB | |
| uses: actions/checkout@v4 | |
| - name: Set up MATLAB | |
| uses: matlab-actions/setup-matlab@v2 | |
| with: | |
| release: ${{ matrix.matlab-version }} | |
| - name: Build file to run code compatability report | |
| shell: bash | |
| run: echo "version, | |
| addpath(genpath('mhkit')), | |
| results = runCodeCompatibilityReport()" >> run.m | |
| - name: Echo runner for code compatibility report | |
| shell: bash | |
| run: cat run.m | |
| - name: Run code compatibility report | |
| uses: matlab-actions/run-command@v2 | |
| with: | |
| command: run | |
| startup-options: -noFigureWindows |