Skip to content

Adding negative tests for invalid bucket path #68

Adding negative tests for invalid bucket path

Adding negative tests for invalid bucket path #68

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
- fix_tests
- krisfed-patch-1
- add_tests
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-14]
matlab-version: ['R2024a']
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
with:
release: ${{matrix.matlab-version}}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11.9'
- name: Install additional 3p dependencies
run: |
python -m pip install --upgrade pip
pip install numpy==1.26.4 tensorstore==0.1.73
- name: Run tests
uses: matlab-actions/run-tests@v2
with:
select-by-folder: 'test'
code-coverage-cobertura: cobertura.xml
- name: Upload codecov
uses: codecov/codecov-action@v4
with:
token: ${{secrets.CODECOV_TOKEN}}
files: ./target/site/cobertura/coverage.xml
name: codecov-umbrella.xml