Update run_coverage_tests.m #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Coverage | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up MATLAB | |
uses: matlab-actions/setup-matlab@v1 | |
with: | |
release: R2022a | |
- name: Install MOcov | |
run: | | |
git clone https://github.com/MOxUnit/MOcov.git /opt/MOcov | |
sudo chmod -R 755 /opt/MOcov | |
- name: Run MATLAB tests | |
run: matlab -batch "run('run_coverage_tests.m')" | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.xml | |
flags: matlab | |
token: ${{ secrets.CODECOV_TOKEN }} |