main: don't report verbosity at start #80
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
name: Build and Test | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install libhdf5-dev libimath-dev | |
- name: Checkout the repository | |
uses: actions/checkout@v4.1.1 | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Configure the project | |
uses: threeal/cmake-action@v1.3.0 | |
- name: Build the project | |
run: cmake --build build | |
- name: Test the project | |
run: ctest --test-dir build |