Initial version of a blockedImage adapter for OME Zarr files #120
This file contains hidden or 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: Run Tests | |
| on: push | |
| 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 |