Skip to content

Commit

Permalink
Merge pull request #124 from simmsa/delft-3d-io
Browse files Browse the repository at this point in the history
Add Delft3D Module
  • Loading branch information
simmsa authored Jul 3, 2024
2 parents f49fbf0 + f68fcd2 commit eacf916
Show file tree
Hide file tree
Showing 618 changed files with 8,761 additions and 2,852 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/code_compatibility_report.yml
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
Loading

0 comments on commit eacf916

Please sign in to comment.