Skip to content

Commit 95ed0b1

Browse files
authored
Create setup_matlab.yml
1 parent b270c1a commit 95ed0b1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/setup_matlab.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Run MATLAB Tests on GitHub-Hosted Runner
2+
on: [push]
3+
jobs:
4+
my-job:
5+
name: Run MATLAB Tests and Generate Artifacts
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Check out repository
9+
uses: actions/checkout@v3
10+
- name: Set up MATLAB
11+
uses: matlab-actions/setup-matlab@v1
12+
- name: Run tests and generate artifacts
13+
uses: matlab-actions/run-tests@v1
14+
with:
15+
test-results-junit: test-results/results.xml
16+
code-coverage-cobertura: code-coverage/coverage.xml

0 commit comments

Comments
 (0)