Skip to content

Enhance H5 I/O

Enhance H5 I/O #82

Workflow file for this run

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