trying to get a build going #1
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
name: Build toolbox | |
on: [push] | |
jobs: | |
build: | |
name: Build toolbox | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up MATLAB | |
uses: matlab-actions/setup-matlab@v2 | |
- name: Run build | |
uses: matlab-actions/run-build@v2 |