-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from simmsa/delft-3d-io
Add Delft3D Module
- Loading branch information
Showing
618 changed files
with
8,761 additions
and
2,852 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
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 |
Oops, something went wrong.