Skip to content

Added compilation support without HDF5 library #552

Added compilation support without HDF5 library

Added compilation support without HDF5 library #552

Workflow file for this run

name: Unittests
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check GNU and Cmake versions
run: gcc --version && cmake --version
- name: Checkout repository
uses: actions/checkout@v1
- name: Get submodules
run: git submodule init
&& git submodule update
- name: Configure
run: cmake -S . -B build -DBUILD_TESTS=ON
- name: Build
run: cmake --build build
- name: Run all tests
run: cd build/tests/unit-tests
&& ctest