Added Updated the the source_medium load_on_device and store_on_devic… #1200
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: 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 -D CMAKE_BUILD_TYPE=Release -D BUILD_TESTS=ON | |
- name: Build | |
run: cmake --build build | |
- name: Run all tests | |
run: cd build/tests/unit-tests | |
&& ctest --verbose |