Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit db9eb7c

Browse files
committed
Set up main.yml to run system tests
1 parent 95fabb5 commit db9eb7c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/main.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: using mpm to install MATLAB
2+
on: push
3+
jobs:
4+
my-job:
5+
name: Run System tests
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Check out repository
9+
uses: actions/checkout@v2
10+
11+
- name: Setup MATLAB
12+
id: setup-matlab
13+
uses: matlab-actions/setup-matlab@v2
14+
15+
- name: Running tests
16+
run: mvn failsafe:integration-test
17+
env:
18+
MATLAB_ROOT: ${{ steps.setup-matlab.outputs.matlabroot }}

0 commit comments

Comments
 (0)