Skip to content

Test results test.

Test results test. #17

Workflow file for this run

name: Run MATLAB Tests on GitHub-Hosted Runner
on: [push]
jobs:
my-job:
name: Run MATLAB Tests and Generate Artifacts
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v1
- name: Run tests and generate artifacts
uses: matlab-actions/run-tests@v1
- name: Package artifacts
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: MATLAB Test Results
path: 'results.xml'
working-directory: 'tests/artifacts'
reporter: java-junit