Skip to content

Commit 00734b3

Browse files
committed
azure => actions
1 parent 67fb853 commit 00734b3

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
File renamed without changes.

.github/workflows/ci_matlab.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: MATLAB on GitHub-Hosted Runner
2+
3+
on:
4+
push:
5+
paths:
6+
- "**.m"
7+
- ".github/workflows/ci_matlab.yml"
8+
9+
10+
jobs:
11+
linux:
12+
timeout-minutes: 15
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: Install MATLAB
18+
uses: matlab-actions/setup-matlab@v0
19+
20+
- name: Run tests and generate artifacts
21+
uses: matlab-actions/run-tests@v0
22+
with:
23+
test-results-junit: test-results/results.xml
24+
code-coverage-cobertura: code-coverage/coverage.xml

0 commit comments

Comments
 (0)