Skip to content

Update README.md

Update README.md #15

Workflow file for this run

name: Windows
on: [push]
jobs:
my-job:
name: Run MATLAB Tests and Generate Artifacts on Windows
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
with:
products: MATLAB_Support_for_MinGW-w64_C/C++/Fortran_Compiler
- name: Run tests and generate artifacts
uses: matlab-actions/run-tests@v1
with:
test-results-junit: test-results/results.xml
code-coverage-cobertura: code-coverage/coverage.xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}