Skip to content

Commit

Permalink
Add matlab build CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
4ever2 committed Nov 4, 2023
1 parent 62be288 commit f47ead6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-matlab.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f47ead6

Please sign in to comment.