Add large NLA logo image #462
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: Run Matlab Tests | |
| on: [push] | |
| env: | |
| MLM_LICENSE_TOKEN: ${{ secrets.MLM_LICENSE_TOKEN }} | |
| jobs: | |
| matlab-test-job: | |
| name: Run Matlab tests and generate reports | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup MATLAB | |
| uses: matlab-actions/setup-matlab@v2 | |
| with: | |
| release: R2023a | |
| cache: true | |
| products: > | |
| MATLAB | |
| Bioinformatics_Toolbox | |
| Parallel_Computing_Toolbox | |
| Statistics_and_Machine_Learning_Toolbox | |
| Image_Processing_Toolbox | |
| - name: Check Matlab Install | |
| uses: matlab-actions/run-command@v2 | |
| with: | |
| command: ver | |
| - name: Run script | |
| uses: matlab-actions/run-command@v2 | |
| with: | |
| command: addpath(genpath(pwd)); results = runTests(); assertSuccess(results) | |
| use-parallel: true |