add crate_config_from_file() and use it in the mini-daq to load both … #117
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: C/C++ CI | |
on: [push, workflow_dispatch] | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: configure | |
run: mkdir build && cd build && cmake .. | |
- name: build | |
run: cmake --build build | |
- name: test | |
run: cd build && ctest |