Refactor h5read to provide shape information and update tests #100
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
on: [push, pull_request] | |
jobs: | |
build_test: | |
name: Build/Test | |
strategy: | |
matrix: | |
os: [ubuntu, macOS] | |
defaults: | |
run: | |
shell: bash -l {0} | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
channels: conda-forge | |
- name: Install dependencies | |
run: | | |
conda env update --file requirements.txt --name test | |
conda list | |
- name: Build | |
run: mkdir build && cd build && cmake .. && make | |
- name: Run tests | |
run: cd build && ctest -L dx2tests --output-on-failure |