Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanharvey1 committed Oct 20, 2024
1 parent a522aab commit 814545b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: MATLAB CI

on:
push:
branches:
- add-CI
pull_request:
branches:
- add-CI

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v1

- name: Run MATLAB tests
run: |
matlab -batch "results = runtests('test', 'IncludeSubfolders', true); assertSuccess(results);"

0 comments on commit 814545b

Please sign in to comment.