We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67fb853 commit 00734b3Copy full SHA for 00734b3
azure-pipelines.yml renamed to .archive/azure-pipelines.yml
.github/workflows/ci_matlab.yml
@@ -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