Add create TRSP solver function #664
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
| # This is an example modified from | |
| # https://florianschanda.github.io/miss_hit/configuration.html | |
| # | |
| # Refer to Issue #177 for potential issues with this action. | |
| name: MATLAB Code Standard Adherence | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| # Prefer using the latest Python version supported by the package | |
| check_standards: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # -- General Setup Steps | |
| - name: Checkout IBCDFO repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools | |
| python -m pip install miss_hit | |
| - name: MISS_HIT Metrics | |
| run: mh_metric --ci | |
| - name: MISS_HIT Code style | |
| run: mh_style --process-slx | |
| - name: MISS_HIT Bug finder | |
| run: mh_lint |