Skip to content

Commit

Permalink
Add GHA tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tfcollins authored Aug 20, 2024
1 parent 22f9b3a commit 41a2af5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run Tests

on: [push]

jobs:
build:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
submodules: recursive

- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v1
with:
release: R2023b
- name: Compile Toolbox
uses: matlab-actions/run-command@v1
with:
command: addpath(genpath('.'));runTests;exit()

0 comments on commit 41a2af5

Please sign in to comment.