Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2.6.1
uses: matlab-actions/setup-matlab@v3.0.0

- name: Setup Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
# Unit tests
- name: Produce MATLAB unit test data
if: matrix.build_testing == 'ON'
uses: matlab-actions/run-command@v2
uses: matlab-actions/run-command@v3
with:
command: cd('tdms/tests/unit/benchmark_scripts/'), setup_unit_tests

Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:

- name: Upload coverage reports to Codecov
if: matrix.build_testing == 'ON' && contains(matrix.os, 'ubuntu')
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6

# -------------------------------------------------------------------------------
# Upload build artefact for system tests
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2.6.1
uses: matlab-actions/setup-matlab@v3.0.0

- name: Install HDF5 libraries for Ubuntu
if: ${{ contains(matrix.os, 'ubuntu') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
4 changes: 2 additions & 2 deletions .github/workflows/matlab_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
uses: actions/checkout@v6

- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2.6.1
uses: matlab-actions/setup-matlab@v3.0.0

- name: Run script
uses: matlab-actions/run-command@v2
uses: matlab-actions/run-command@v3
with: # rfpcb contains a delta function definition which must be removed so a delta struct can be defined
command: rmpath([matlabroot '/toolbox/rfpcb/rfpcb/shapes']), run('tdms/tests/matlab/run_tests.m')
Loading