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 b270c1a commit 95ed0b1Copy full SHA for 95ed0b1
.github/workflows/setup_matlab.yml
@@ -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