Skip to content

Update blank.yml

Update blank.yml #16

Workflow file for this run

name: Run MATLAB
on: [push]
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup MATLAB
uses: matlab-actions/setup-matlab@v2
- name: Get run-matlab-command
run: |
wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v1/glnxa64/run-matlab-command
chmod +x /usr/local/bin/run-matlab-command
- name: Run MATLAB Command
run: run-matlab-command "disp('hello world')"