diff --git a/.github/workflows/build-matlab.yml b/.github/workflows/build-matlab.yml new file mode 100644 index 0000000..2d75de9 --- /dev/null +++ b/.github/workflows/build-matlab.yml @@ -0,0 +1,22 @@ +name: 'Build MATLAB Plugin' +on: + push: + branches: + - 'master' + paths: + - 'matlab/**/*' + pull_request: + paths: + - 'matlab/**/*' +permissions: + contents: 'read' +jobs: + build: + runs-on: 'ubuntu-latest' + steps: + - name: Checkout branch ${{ github.ref_name }} + uses: actions/checkout@v4 + - name: Setup MATLAB + uses: matlab-actions/setup-matlab@v1 + - name: Run build + uses: matlab-actions/run-build@v1